-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.18 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "hafas-gtfs-rt-feed",
"description": "Generate a GTFS Realtime feed by monitoring a HAFAS endpoint.",
"version": "8.2.6",
"main": "index.js",
"bin": {
"monitor-hafas": "monitor.js",
"match-with-gtfs": "match.js",
"debug-gtfs-matching": "debug-matching.js",
"serve-as-gtfs-rt": "serve.js",
"gtfs-to-sql": "gtfs-to-sql",
"build-gtfs-match-index": "build-gtfs-match-index"
},
"files": [
"monitor.js",
"match.js",
"debug-matching.js",
"serve.js",
"gtfs-to-sql",
"build-gtfs-match-index",
"lib",
"LICENSE",
"LICENSE-PROSPERITY.md",
"LICENSE-APACHE"
],
"keywords": [
"public transport",
"transit",
"gtfs realtime",
"gtfs-rt",
"feed",
"hafas",
"hafas-client"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-gtfs-rt-feed",
"repository": "derhuerst/hafas-gtfs-rt-feed",
"bugs": "https://github.com/derhuerst/hafas-gtfs-rt-feed/issues",
"license": "(Apache-2.0 AND Prosperity-3.0.0)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/derhuerst"
},
{
"type": "patreon",
"url": "https://patreon.com/derhuerst"
}
],
"engines": {
"node": ">=16.17"
},
"dependencies": {
"@derhuerst/round-robin-scheduler": "^1.0.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"etag": "^1.8.1",
"gtfs-rt-bindings": "^4.0.1",
"gtfs-rt-differential-to-full-dataset": "^2.1.0",
"gtfs-via-postgres": "^4.5.1",
"hafas-monitor-trips": "^6.2.0",
"lodash": "^4.17.20",
"luxon": "^3.3.0",
"match-gtfs-rt-to-gtfs": "^6.3.0",
"mri": "^1.1.6",
"node-nats-streaming": "^0.3.2",
"normalize-vbb-station-name-for-search": "^1.0.0",
"p-limit": "^3.0.2",
"pino": "^8.11.0",
"prom-client": "^15.1.0",
"send": "^0.18.0",
"serve-buffer": "^3.0.3",
"ttl-buffer": "^1.0.0"
},
"peerDependencies": {
"hafas-client": "^5.13.0"
},
"devDependencies": {
"eslint": "^8.1.0",
"hafas-client": "*",
"nats-streaming-cli": "^1.0.2",
"ndjson": "^2.0.0",
"pino-pretty": "^10.0.0",
"print-gtfs-rt-cli": "^3.1.0",
"sample-gtfs-feed": "^0.11.2",
"slugg": "^1.2.1"
},
"scripts": {
"lint": "eslint .",
"test": "./test/index.sh",
"prepublishOnly": "npm run lint && npm test"
}
}