-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 KB
/
package.json
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": "transit-map",
"description": "Generate a schematic map (“metro map”) for a given (transit) network graph using Mixed Integer Programming.",
"version": "0.1.0",
"keywords": [
"transit",
"transport",
"network",
"map",
"graph",
"schematic",
"layout",
"metro"
],
"author": "Julius Tens <[email protected]>",
"homepage": "https://github.com/juliuste/transit-map",
"repository": "juliuste/transit-map",
"bugs": "https://github.com/juliuste/transit-map/issues",
"main": "./index.js",
"files": [
"index.js",
"cli.js",
"prepare-graph/*",
"generate-lp/*",
"revise-solution/*"
],
"bin": {
"transit-map": "./cli.js"
},
"dependencies": {
"child-process-promise": "^2.2.1",
"closest-to": "^2.0.0",
"get-stdin": "^6.0.0",
"lodash": "^4.17.10",
"mri": "^1.1.1",
"parse-gurobi-solution": "^0.0.0",
"pify": "^3.0.0",
"randomatic": "^3.0.0",
"robust-determinant": "^1.1.0",
"robust-segment-intersect": "^1.0.1",
"segseg": "^0.2.2",
"stream-to-promise": "^2.2.0",
"svg-transit-map": "^0.0.1",
"tmp": "^0.0.33",
"virtual-dom-stringify": "^3.0.1",
"write": "^1.0.3"
},
"scripts": {},
"engines": {
"node": ">=8"
},
"license": "ISC"
}