-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "gtfsrt2lc",
"version": "2.2.1",
"description": "Converts the GTFS-RT to Linked Connections",
"main": "./index.js",
"type": "module",
"bin": {
"gtfsrt2lc": "bin/gtfsrt2lc.js",
"gtfsrt2json": "bin/gtfsrt2json.js"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --inject-globals false",
"test-ci": "NODE_OPTIONS=--experimental-vm-modules npx jest --inject-globals false --ci --maxWorkers=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linkedconnections/gtfsrt2lc.git"
},
"author": "Julian Rojas",
"license": "MIT",
"bugs": {
"url": "https://github.com/linkedconnections/gtfsrt2lc/issues"
},
"homepage": "https://github.com/linkedconnections/gtfsrt2lc#readme",
"dependencies": {
"adm-zip": "^0.5.16",
"commander": "^13.0.0",
"date-fns": "^4.1.0",
"del": "^8.0.0",
"fast-csv": "^5.0.2",
"gtfs-realtime-bindings": "^1.1.1",
"JSONStream": "^1.3.5",
"level": "^9.0.0",
"n3": "^1.23.1",
"rdf-data-factory": "^1.1.2",
"undici": "^7.2.0",
"uri-templates": "^0.2.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0"
}
}