-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.57 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
57
58
59
60
61
62
63
64
{
"name": "gtfs-to-fptf",
"version": "0.1.1",
"description": "Convert GFTS data to FPTF: lib & CLI.",
"keywords": [
"convert",
"fptf",
"gtfs",
"public",
"transit",
"transport"
],
"homepage": "https://github.com/public-transport/gtfs-to-fptf",
"bugs": "https://github.com/public-transport/gtfs-to-fptf/issues",
"repository": "public-transport/gtfs-to-fptf",
"license": "ISC",
"author": "Julius Tens <mail@juliustens.eu>",
"files": [
"index.js",
"generate-fptf",
"bin.js"
],
"main": "./index.js",
"bin": {
"gtfs-to-fptf": "./bin.js"
},
"scripts": {
"check-deps": "depcheck --ignore-dirs=input-gtfs,output-fptf",
"fix": "eslint --fix generate-fptf index.js bin.js",
"lint": "eslint generate-fptf index.js bin.js",
"prepublishOnly": "npm test",
"test": "npm run lint && npm run check-deps"
},
"dependencies": {
"@turf/helpers": "^6.1.4",
"fs-extra": "^5.0.0",
"gtfs-to-leveldb": "github:public-transport/gtfs-to-leveldb#shapes",
"into-stream": "^3.1.0",
"is-empty-file": "^1.0.1",
"level": "^3.0.0",
"lodash": "^4.17.11",
"moment-duration-format": "^2.2.2",
"moment-timezone": "^0.5.14",
"mri": "^1.1.0",
"ndjson": "^1.5.0",
"pify": "^3.0.0",
"pump": "^3.0.0",
"through2-filter": "^2.0.0",
"through2-map": "^3.0.0",
"tmp": "^0.0.33"
},
"devDependencies": {
"depcheck": "^0.8.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
},
"engines": {
"node": ">=8"
}
}