-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "vbb-osm-relations",
"description": "VBB lines and their OSM relations.",
"version": "2.0.0",
"main": "index.js",
"files": [
"index.js",
"lines.js",
"platforms.json",
"entrances.json"
],
"keywords": [
"vbb",
"bvg",
"berlin",
"osm",
"open street map"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/vbb-osm-relations",
"repository": "derhuerst/vbb-osm-relations",
"bugs": "https://github.com/derhuerst/vbb-osm-relations/issues",
"license": "ISC",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@derhuerst/query-overpass": "^2.0.0",
"boom": "^7.2.0",
"fetch-ponyfill": "^6.0.0",
"gps-distance": "0.0.4",
"lru-cache": "^5.0.0",
"p-throttle": "^3.0.0",
"pinkie-promise": "^2.0.1",
"queue": "^6.0.0",
"slug": "^2.0.0",
"vbb-short-station-name": "^1.0.0",
"vbb-stations": "^7.1.0"
},
"scripts": {
"fetch-platforms": "node build/fetch-platforms.js",
"fetch-entrances": "node build/fetch-entrances.js",
"build": "npm run fetch-platforms && npm run fetch-entrances",
"test": "node test.js"
}
}