-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1009 Bytes
/
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
{
"name": "gtfs-rt-differential-to-full-dataset",
"description": "Transform a differential GTFS Realtime feed into a full dataset/dump.",
"version": "2.1.2",
"main": "index.js",
"files": [
"index.js",
"lib",
"example.js"
],
"keywords": [
"public transport",
"transit",
"gtfs realtime",
"gtfs-rt",
"differential"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/gtfs-rt-differential-to-full-dataset",
"repository": "derhuerst/gtfs-rt-differential-to-full-dataset",
"bugs": "https://github.com/derhuerst/gtfs-rt-differential-to-full-dataset/issues",
"license": "ISC",
"engines": {
"node": ">=14"
},
"dependencies": {
"gtfs-rt-bindings": "^4.0.0",
"protocol-buffers-encodings": "^1.1.0",
"sorted-array-functions": "^1.3.0"
},
"devDependencies": {
"eslint": "^7.8.1",
"ndjson": "^2.0.0",
"pump": "^3.0.0"
},
"scripts": {
"test": "node test/index.js",
"lint": "eslint .",
"prepublishOnly": "npm test && npm run lint"
}
}