-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"preferGlobal": true,
"name": "generate-vbb-graph",
"description": "Berlin & Brandenburg public transport as JGF file.",
"version": "2.0.0",
"files": [
"cli.js",
"compute-graph.js",
"lib"
],
"bin": {
"generate-vbb-graph": "./cli.js"
},
"keywords": [
"vbb",
"public transport",
"graph",
"jgf",
"json"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/generate-vbb-graph",
"repository": "derhuerst/generate-vbb-graph",
"bugs": "https://github.com/derhuerst/generate-vbb-graph/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {
"hifo": "^1.0.0",
"lodash.isequal": "^4.5.0",
"merged-vbb-stations": "^2.2.0",
"mri": "^1.1.0",
"ndjson": "^2.0.0",
"projections": "^1.0.0",
"pump": "^3.0.0",
"through2": "^4.0.2",
"vbb-line-variant-score": "^0.2.0",
"vbb-lines": "^4.0.0",
"vbb-short-station-name": "^1.0.1",
"vbb-stations": "^7.3.1",
"vbb-trips": "^3.0.0"
},
"devDependencies": {
"tap-min": "^2.0.0",
"tape": "^5.0.0"
},
"scripts": {
"test": "node test.js | tap-min",
"prepublishOnly": "npm test"
}
}