-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 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": "hafas-discover-stations",
"description": "Pass in a HAFAS client, discover stations by querying departures.",
"version": "5.0.0",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"lib",
"bin.js",
"examples"
],
"keywords": [
"hafas",
"hafas-client",
"public transport",
"transit",
"stations",
"graph"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-discover-stations",
"repository": "derhuerst/hafas-discover-stations",
"bugs": "https://github.com/derhuerst/hafas-discover-stations/issues",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"ansi-diff-stream": "^1.2.0",
"debug": "^4.0.0",
"live-moving-average": "^1.1.0",
"luxon": "^3.4.4",
"mri": "^1.1.0",
"ms": "^2.1.2",
"ndjson": "^2.0.0",
"queue": "^7.0.0",
"speedometer": "^1.1.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"hafas-client": "^6.2.1",
"through2": "^4.0.2"
},
"peerDependencies": {
"hafas-client": "^6.0.0"
},
"scripts": {
"test": "node test.js",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm test"
}
}