-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
91 lines (91 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "gtfs-to-geojson",
"version": "3.7.8",
"private": false,
"description": "Generate geoJSON of transit route data from a GTFS file",
"keywords": [
"transit",
"gtfs",
"transportation",
"geojson"
],
"bugs": {
"url": "https://github.com/blinktaginc/gtfs-to-geojson/issues"
},
"repository": "git://github.com/blinktaginc/gtfs-to-geojson",
"license": "MIT",
"author": "Brendan Nee <brendan@blinktag.com>",
"contributors": [
"Kegan Maher"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"gtfs-to-geojson": "dist/bin/gtfs-to-geojson.js"
},
"scripts": {
"prepare": "husky",
"build": "tsup"
},
"dependencies": {
"@turf/bbox": "^7.1.0",
"@turf/bbox-polygon": "^7.1.0",
"@turf/buffer": "^7.1.0",
"@turf/convex": "^7.1.0",
"@turf/helpers": "^7.1.0",
"@turf/meta": "^7.1.0",
"@turf/simplify": "^7.1.0",
"@turf/union": "^7.1.0",
"archiver": "^7.0.1",
"cli-table": "^0.3.11",
"gtfs": "^4.15.4",
"lodash-es": "^4.17.21",
"p-limit": "^6.1.0",
"pretty-error": "^4.0.0",
"sanitize-filename": "^1.6.3",
"sqlstring-sqlite": "^0.1.1",
"timer-machine": "^1.1.0",
"toposort": "^2.0.2",
"yargs": "^17.7.2",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.0",
"@types/timer-machine": "^1.1.3",
"@types/yargs": "^17.0.33",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 20.11.0"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
},
"hooks": {
"after:bump": "npm run build"
}
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write",
"*.json": "prettier --write"
}
}