-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 940 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
42
43
{
"name": "print-gtfs-rt-cli",
"description": "Read a GTFS Realtime feed from stdin, print human-readable or as JSON.",
"version": "3.1.0",
"files": [
"cli.js"
],
"bin": {
"print-gtfs-rt": "cli.js"
},
"keywords": [
"gtfs",
"general transit feed specification",
"gtfs-rt",
"realtime",
"feed",
"command line",
"cli"
],
"author": "Jannis R <mail@jannisr.de>",
"contributors": [
"John Helmuth <john.helmuth@soundtransit.org>"
],
"homepage": "https://github.com/derhuerst/print-gtfs-rt-cli",
"repository": "derhuerst/print-gtfs-rt-cli",
"bugs": "https://github.com/derhuerst/print-gtfs-rt-cli/issues",
"license": "ISC",
"engines": {
"node": ">=16.17"
},
"dependencies": {
"gtfs-rt-bindings": "^4.0.0",
"length-prefixed-stream": "^2.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "./test.sh",
"prepublishOnly": "npm run lint && npm test"
},
"devDependencies": {
"eslint": "^8.11.0"
}
}