-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "find-hafas-data-in-another-hafas",
"description": "Find data from one HAFAS endpoint in another one.",
"version": "4.4.0",
"main": "index.js",
"files": [
"index.js",
"match-line.js",
"match-stop-or-station.js",
"match-stopover.js",
"find-stop.js",
"find-leg.js",
"find-arr-dep.js",
"merge-stop.js",
"merge-leg.js",
"merge-arr-dep.js",
"lib",
"example"
],
"keywords": [
"hafas",
"hafas-client",
"public transport",
"transit"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/find-hafas-data-in-another-hafas",
"repository": "derhuerst/find-hafas-data-in-another-hafas",
"bugs": "https://github.com/derhuerst/find-hafas-data-in-another-hafas/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"dependencies": {
"@derhuerst/stable-public-transport-ids": "^2.1.0",
"@turf/distance": "^6.0.1",
"@turf/helpers": "^6.1.4",
"debug": "^4.1.0",
"hafas-collect-departures-at": "^3.0.0",
"lodash": "^4.17.15",
"slug": "^8.2.2"
},
"peerDependencies": {
"hafas-client": "^5.0.0"
},
"devDependencies": {
"db-hafas": "^5.0.1",
"eslint": "^8.36.0",
"normalize-vbb-station-name-for-search": "^1.0.0",
"replayer": "^2.2.3",
"tap-min": "^2.0.0",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"tokenize-db-station-name": "^3.0.0",
"vbb-hafas": "^7.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "VCR_MODE=playback node test/index.js | tap-min",
"test:live": "VCR_OFF=true node test/index.js | tap-min",
"test:record": "VCR_MODE=record node test/index.js | tap-min",
"prepublishOnly": "npm run lint && npm test && npm run test:live"
}
}