-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.47 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "db-stations",
"description": "A list of DB stations.",
"version": "5.0.2",
"type": "module",
"main": "index.js",
"browser": "browser.js",
"files": [
"index.js",
"browser.js",
"create-filter.js",
"data.ndjson",
"full.ndjson",
"data.json",
"full.json"
],
"keywords": [
"db",
"deutsche bahn",
"german railway",
"public transport",
"transit",
"stations",
"open data"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/db-stations",
"repository": "derhuerst/db-stations",
"bugs": "https://github.com/derhuerst/db-stations/issues",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"ndjson": "^2.0.0",
"tokenize-db-station-name": "^3.0.0"
},
"devDependencies": {
"compute-db-station-weight": "^4.0.0",
"debug": "^4.1.1",
"eslint": "^8.0.1",
"fetch-ponyfill": "^7.1.0",
"from2": "2.3.0",
"hafas-client": "^6.0.1",
"hafas-estimate-station-weight": "^4.0.0",
"is-roughly-equal": "^0.1.0",
"is-stream": "^3.0.0",
"lodash": "^4.7.14",
"ms": "^2.1.1",
"progress-stream": "^2.0.0",
"pump": "^3.0.0",
"slugg": "^1.2.0",
"stream-filter": "^2.1.0",
"stream-sink": "^2.1.0",
"tap-min": "^2.0.0",
"tape": "^5.0.1",
"through2": "^4.0.2",
"through2-concurrent": "^2.0.0"
},
"scripts": {
"lint": "eslint .",
"build": "node build/index.js && node build/convert-to-browser.js",
"test": "node test.js | tap-min",
"prepublishOnly": "npm run lint && npm test"
}
}