-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"private": true,
"name": "vbb-gtfs-rt-service",
"description": "Matches realtime VDV-454 transit data against GTFS Schedule and serves it as GTFS Realtime.",
"version": "0.1.0",
"type": "module",
"main": "index.js",
"author": "Verkehrsverbund Berlin Brandenburg <[email protected]>",
"contributors": [
"Jannis R <[email protected]>"
],
"homepage": "https://github.com/OpenDataVBB/gtfs-rt-feed",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenDataVBB/gtfs-rt-feed.git"
},
"bugs": "https://github.com/OpenDataVBB/gtfs-rt-feed/issues",
"license": "ISC",
"engines": {
"node": ">=22"
},
"dependencies": {
"async-iterator-concurrent-map": "^1.0.2",
"ioredis": "^5.4.1",
"iter-tools": "^7.5.3",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"match-gtfs-rt-to-gtfs": "^7.0.0-alpha.1",
"nats": "^2.27.0",
"pg": "^8.12.0",
"pino": "^9.2.0",
"prom-client": "^15.1.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"pino-pretty": "^10.3.1"
},
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"test": "./test/index.sh",
"prepublishOnly": "npm run lint && npm test"
}
}