-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 813 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 813 Bytes
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
{
"name": "gtfs-schedule-data",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"generate": "node ./scripts/generate.js",
"genLines": "node ./scripts/genLineSegments.js",
"scrapeIconsAndShapes": "node ./scripts/scrapeIconsAndShapes.js",
"genDir": "node ./scripts/genDir.js",
"cleanup": "node ./scripts/cleanup.js",
"allLocal": "npm run generate && npm run genLines && npm run scrapeIconsAndShapes && npm run genDir",
"all": "npm run allLocal && npm run cleanup"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@turf/turf": "^6.5.0",
"csv-parse": "^5.3.10",
"directory-tree": "^3.5.1",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"node-fetch": "^2.6.7",
"skeleton-tracing-js": "^1.0.4"
}
}