-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.11 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "sample-gtfs-feed",
"description": "An imaginary GTFS data set used for testing.",
"version": "0.13.0",
"main": "index.js",
"files": [
"index.js",
"full.js",
"minimal.js",
"agency.js",
"stops.js",
"routes.js",
"trips.js",
"stop_times.js",
"calendar.js",
"calendar_dates.js",
"shapes.js",
"frequencies.js",
"transfers.js",
"pathways.js",
"levels.js",
"translations.js",
"feed_info.js",
"gtfs",
"gtfs.zip",
"json",
"lib"
],
"keywords": [
"gtfs",
"mock",
"data",
"public transport",
"transit"
],
"author": "Jannis R <[email protected]>",
"homepage": "https://github.com/public-transport/sample-gtfs-feed",
"repository": "public-transport/sample-gtfs-feed",
"bugs": "https://github.com/public-transport/sample-gtfs-feed/issues",
"license": "ISC",
"engines": {
"node": ">=12"
},
"dependencies": {},
"devDependencies": {
"csv-write-stream": "^2.0.0",
"eslint": "^7.22.0",
"lodash": "^4.17.20",
"pump": "^3.0.0"
},
"scripts": {
"lint": "eslint .",
"build": "env NODE_ENV=dev node build.js",
"prepublishOnly": "npm run lint && npm run build"
}
}