-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.77 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
{
"name": "gtfs2lc",
"version": "2.2.1",
"description": "Mapping script from gtfs to (linked) connections",
"main": "lib/gtfs2lc.js",
"bin": {
"gtfs2lc": "./bin/gtfs2lc.js",
"gtfs2lc-clean": "./bin/gtfs2lc-clean.sh",
"linkedconnections-joinandsort": "./bin/linkedconnections-sort.sh"
},
"scripts": {
"test": "rm -rf test/sample-feed/ ; cp -r test/sample-feed-test/ test/sample-feed/ ; ./bin/gtfs2lc.js -s -f jsonld test/sample-feed > test/sample-feed/connections-notjoined.nldjsonld ; ./bin/linkedconnections-sort.sh test/sample-feed/connections-notjoined.nldjsonld > test/sample-feed/connections.nldjsonld ; rm test/sample-feed/linkedConnections.json ; jest --runInBand",
"test-ci": "rm -rf test/sample-feed/ ; cp -r test/sample-feed-test/ test/sample-feed/ ; ./bin/gtfs2lc.js -s -f jsonld test/sample-feed > test/sample-feed/connections-notjoined.nldjsonld ; ./bin/linkedconnections-sort.sh test/sample-feed/connections-notjoined.nldjsonld > test/sample-feed/connections.nldjsonld ; rm test/sample-feed/linkedConnections.json ; jest --ci --runInBand --coverage",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git://github.com/LinkedConnections/gtfs2lc.git"
},
"keywords": [
"GTFS",
"Linked Connections",
"RDF"
],
"author": "Pieter Colpaert",
"license": "MIT",
"bugs": {
"url": "https://github.com/LinkedConnections/gtfs2lc/issues"
},
"dependencies": {
"commander": "^4.1.1",
"date-fns": "^2.30.0",
"del": "^5.1.0",
"fast-csv": "^4.3.6",
"JSONStream": "^1.3.5",
"level": "^8.0.0",
"n3": "^1.17.0",
"stream-json": "^1.8.0",
"uri-templates": "^0.2.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"jest": "^29.6.1"
}
}