-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"private": true,
"name": "facilities-gtfs-rt-feed",
"description": "Generate a GTFS-Realtime feed with the status of Berlin & Brandenburg elevators.",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"keywords": [
"gtfs",
"gtfs-realtime",
"gtfs-rt",
"elevators",
"accessibility",
"public transport",
"transit",
"berlin",
"Brandenburg"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/derhuerst/facilities-gtfs-rt-feed",
"repository": "derhuerst/facilities-gtfs-rt-feed",
"bugs": "https://github.com/derhuerst/facilities-gtfs-rt-feed/issues",
"license": "MIT",
"engines": {
"node": ">=16"
},
"dependencies": {
"cors": "^2.8.5",
"csv-stringify": "^5.6.5",
"etag": "^1.8.1",
"express": "^4.17.1",
"node-fetch": "^3.1.0",
"pino": "^7.2.0",
"prom-client": "^14.0.1",
"protobufjs": "^6.11.2",
"quick-lru": "^6.0.2",
"serve-buffer": "^3.0.3"
},
"devDependencies": {
"eslint": "^8.0.0",
"pino-pretty": "^7.2.0",
"print-gtfs-rt-cli": "^3.0.0"
},
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"build-gtfs-rt-draft": "pbjs mobilitydata-transit/gtfs-realtime/proto/gtfs-realtime.proto -t static-module -w commonjs --keep-case --force-number -o lib/gtfs-rt-stationupdate-draft.pbf.cjs",
"build": "npm run build-gtfs-rt-draft",
"test": "env ACCESSIBILITY_CLOUD_TOKEN=foo SERVICE_IDS_PREFIX=bar node test/index.js",
"debug-feed": "curl 'http://localhost:3000/feed' -s | print-gtfs-rt --gtfs-rt-bindings lib/gtfs-rt-stationupdate-draft.pbf.cjs"
}
}