-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
159 lines (159 loc) · 3.84 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "gtfs",
"version": "4.15.11",
"description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
"keywords": [
"transit",
"gtfs",
"transportation",
"geojson",
"sqlite"
],
"bugs": {
"url": "https://github.com/blinktaginc/node-gtfs/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/blinktaginc/node-gtfs.git"
},
"license": "MIT",
"author": "Brendan Nee <[email protected]>",
"contributors": [
"Alessio Bogon",
"Jacob Childress <[email protected]>",
"Robin Chou <[email protected]>",
"cobralibre <[email protected]>",
"Matt Gruskin",
"Sam Hashemi <[email protected]>",
"Hafiz Ismail",
"LeAnne Lis",
"Ethan Lo <[email protected]>",
"Natalie Perna",
"Léo Pradel",
"Landon Reed",
"Jason Schapiro <[email protected]>",
"Jean-François Vial <[email protected]>",
"wdalrymple",
"Ivan Yulaev",
"Ivy Rose",
"Adam Pitchie",
"Daniel Demidov",
"gerlacdt",
"Heath Shurtleff",
"Marcelo Muñoz Araya <[email protected]>",
"David Aghassi",
"Steven Prins",
"W3stside",
"pitrz",
"pravdomil",
"pusztaienike",
"Andrea Gilardoni",
"Sergio Behrends <[email protected]>",
"herrBeesch",
"Oskari Groenroos <[email protected]>",
"Devin Packer",
"Darius MARTIN",
"Mike Brocks",
"Matt Moran",
"Daniel Sörlöv",
"Ali Zarghami <[email protected]>",
"David Abell",
"Matthias Feist <[email protected]>",
"Oliv4945",
"Kyle Ramey",
"Anton Bracke",
"Emma K Alexandra <[email protected]>",
"Mael <[email protected]>",
"b-e-b-o-o"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"gtfs-export": "dist/bin/gtfs-export.js",
"gtfs-import": "dist/bin/gtfs-import.js",
"gtfsrealtime-update": "dist/bin/gtfsrealtime-update.js"
},
"scripts": {
"prepare": "husky",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsup",
"build-watch": "tsup --watch"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./models": {
"import": "./dist/models/models.js",
"types": "./dist/models/models.d.ts"
}
},
"dependencies": {
"@turf/helpers": "^7.1.0",
"better-sqlite3": "^11.5.0",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.1",
"gtfs-realtime-bindings": "^1.1.1",
"lodash-es": "^4.17.21",
"long": "^5.2.3",
"node-stream-zip": "^1.15.0",
"pluralize": "^8.0.0",
"pretty-error": "^4.0.0",
"promise-map-series": "^0.3.0",
"sanitize-filename": "^1.6.3",
"sqlstring-sqlite": "^0.1.1",
"strip-bom-stream": "^5.0.0",
"tempy": "^3.1.0",
"timer-machine": "^1.1.0",
"untildify": "^5.0.0",
"yargs": "^17.7.2",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22",
"@types/pluralize": "^0.0.33",
"@types/timer-machine": "^1.1.3",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"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"
}
}