forked from BlinkTagInc/node-gtfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 3.91 KB
/
package.json
File metadata and controls
162 lines (162 loc) · 3.91 KB
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
160
161
162
{
"name": "gtfs",
"version": "4.18.0",
"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 <brendan@blinktag.com>",
"contributors": [
"Alessio Bogon",
"Jacob Childress <jacobc@gmail.com>",
"Robin Chou <hello@robinchou.com>",
"cobralibre <jacobc@gmail.com>",
"Matt Gruskin",
"Sam Hashemi <sam@samhashemi.com>",
"Hafiz Ismail",
"LeAnne Lis",
"Ethan Lo <ethan@ethanlo.com>",
"Natalie Perna",
"Léo Pradel",
"Landon Reed",
"Jason Schapiro <yono38@gmail.com>",
"Jean-François Vial <jeff@modulaweb.fr>",
"wdalrymple",
"Ivan Yulaev",
"Ivy Rose",
"Adam Pitchie",
"Daniel Demidov",
"gerlacdt",
"Heath Shurtleff",
"Marcelo Muñoz Araya <ma.munoz.araya@gmail.com>",
"David Aghassi",
"Steven Prins",
"W3stside",
"pitrz",
"pravdomil",
"pusztaienike",
"Andrea Gilardoni",
"Sergio Behrends <sergio@behrends.com.ar>",
"herrBeesch",
"Oskari Groenroos <oskari@groenroos.fi>",
"Devin Packer",
"Darius MARTIN",
"Mike Brocks",
"Matt Moran",
"Daniel Sörlöv",
"Ali Zarghami <alizarghami@gmail.com>",
"David Abell",
"Matthias Feist <matze@matf.de>",
"Oliv4945",
"Kyle Ramey",
"Anton Bracke",
"Emma K Alexandra <emma@emma.sh>",
"Mael <laem@kont.me>",
"b-e-b-o-o",
"Ben Standaert",
"mattkinnia",
"Théophile Helleboid <theophile.helleboid@transdev.com>",
"mishamaliga",
"Magnus Petersen-Paaske"
],
"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 --test --test-reporter=spec src/test/**/*.test.ts",
"build": "tsup",
"build-watch": "tsup --watch",
"lint": "eslint \"src/**/*.ts\""
},
"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.2.0",
"better-sqlite3": "12.2.0",
"csv-parse": "6.1.0",
"csv-stringify": "6.6.0",
"gtfs-realtime-bindings": "1.1.1",
"lodash-es": "4.17.21",
"long": "5.3.2",
"node-stream-zip": "1.15.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",
"yargs": "18.0.0",
"yoctocolors": "2.1.2"
},
"devDependencies": {
"@eslint/config-helpers": "0.3.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.34.0",
"@types/better-sqlite3": "7.6.13",
"@types/geojson": "7946.0.16",
"@types/lodash-es": "4.17.12",
"@types/node": "22",
"@types/yargs": "17.0.33",
"eslint": "9.34.0",
"globals": "16.3.0",
"husky": "9.1.7",
"lint-staged": "16.1.5",
"prettier": "3.6.2",
"tsup": "8.5.0",
"typescript": "5.9.2",
"typescript-eslint": "8.41.0"
},
"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"
}
}