forked from derhuerst/generate-gtfs-flex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.2 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
{
"private": true,
"name": "generate-herrenberg-gtfs-flex",
"description": "Generate GTFS Flex for Herrenberg on-demand public transport service.",
"version": "3.0.1",
"bin": {
"generate-locations-geojson": "gen-locations-geojson.js",
"generate-booking-rules-txt": "gen-booking-rules-txt.js",
"patch-routes-txt": "patch-routes-txt.js",
"patch-trips-txt": "patch-trips-txt.js",
"patch-stop-times-txt": "patch-stop-times-txt.js"
},
"keywords": [
"public transport",
"transit",
"gtfs",
"gtfs-flex"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/generate-herrenberg-gtfs-flex",
"repository": "derhuerst/generate-herrenberg-gtfs-flex",
"bugs": "https://github.com/derhuerst/generate-herrenberg-gtfs-flex/issues",
"license": "ISC",
"engines": {
"node": ">=14"
},
"dependencies": {
"@turf/circle": "^6.5.0",
"@turf/truncate": "^6.3.0",
"ajv": "^8.6.1",
"csv-parser": "^3.0.0",
"csv-stringify": "^5.6.5",
"gtfs-utils": "^4.2.0",
"mri": "^1.1.6"
},
"devDependencies": {
"eslint": "^8.3.0",
"sample-gtfs-feed": "^0.10.3"
},
"scripts": {
"lint": "eslint .",
"test": "./test/index.sh",
"prepublishOnly": "npm run lint && npm test"
}
}