-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "cs-algorithms",
"version": "0.0.4",
"description": "Various sorting and graph algorithms.",
"exports": {
".": "./out/src/**/*.js",
"./graphs": "./out/src/graph_*/*.js",
"./sorting": "./out/src/sort*/*.js"
},
"scripts": {
"prepare": "tsc",
"build": "tsc",
"postbuild": "jest",
"test": "jest",
"demo": "cd ./out/src/graph_demo && node graphdemo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SiFalorSum/CS-Algorithms.git"
},
"author": "Nils Hansander",
"license": "ISC",
"homepage": "https://github.com/SiFalorSum/CS-Algorithms#readme",
"dependencies": {
"@tsconfig/recommended": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"jest": "^29.0.2",
"ts-jest": "^29.0.3"
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/test/"
],
"moduleNameMapper": {
"^data/(.*)$": "<rootDir>/data/$1",
"^util/(.*)$": "<rootDir>/src/util/$1",
"^sort/demo/(.*)$": "<rootDir>/src/sort_demo/$1",
"^sort/(.*)$": "<rootDir>/src/sort/$1",
"^graph/demo/(.*)$": "<rootDir>/src/graph_demo/$1",
"^graph/(.*)$": "<rootDir>/src/graph_traversal/$1"
},
"moduleDirectories": [
"node_modules",
"src"
],
"preset": "ts-jest",
"verbose": true
},
"private": true
}