-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "hafas-estimate-station-weight",
"description": "Pass in a HAFAS client, estimate the importance/weight of a station.",
"version": "4.0.0",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"example.js"
],
"keywords": [
"hafas",
"hafas-client",
"public transport",
"transit",
"station",
"weight",
"importance",
"ranking"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/hafas-estimate-station-weight",
"repository": "derhuerst/hafas-estimate-station-weight",
"bugs": "https://github.com/derhuerst/hafas-estimate-station-weight/issues",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"hafas-collect-departures-at": "^4.0.0",
"hafas-find-departures-duration-limit": "^1.0.2",
"lodash": "^4.17.21",
"luxon": "^3.1.1"
},
"devDependencies": {
"eslint": "^8.30.0",
"tap-min": "^2.0.0",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"vbb-hafas": "^8.0.1",
"vbb-mode-weights": "^0.2.0"
},
"peerDependencies": {
"hafas-client": "^6"
},
"scripts": {
"lint": "eslint .",
"test": "node test.js | tap-min",
"prepublishOnly": "npm run lint && npm test"
}
}