-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "route13",
"version": "0.0.1",
"description": "Framework for building simulators and optimizers for transportation networks.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MikeHopcroft/route13.git"
},
"author": "Michael Hopcroft",
"license": "MIT",
"bugs": {
"url": "https://github.com/MikeHopcroft/route13/issues"
},
"homepage": "https://github.com/MikeHopcroft/route13#readme",
"scripts": {
"test": "mocha",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"postcompile": "copyfiles \"samples/data/**/*.yaml\" build"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/debug": "0.0.31",
"@types/minimist": "^1.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.4",
"@types/seedrandom": "^2.4.27",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"gts": "^0.8.0",
"mocha": "^5.2.0",
"typescript": "~2.8.0"
},
"dependencies": {
"chalk": "^2.4.2",
"debug": "^4.1.0",
"fastpriorityqueue": "^0.6.1",
"minimist": "^1.2.0",
"seedrandom": "^2.4.4",
"ts-gaussian": "^1.2.0"
}
}