gtfs 4.17.6 → 4.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -11
- package/dist/bin/gtfs-export.js +25 -18
- package/dist/bin/gtfs-export.js.map +1 -1
- package/dist/bin/gtfs-import.js +443 -316
- package/dist/bin/gtfs-import.js.map +1 -1
- package/dist/bin/gtfsrealtime-update.js +253 -196
- package/dist/bin/gtfsrealtime-update.js.map +1 -1
- package/dist/index.d.ts +145 -7
- package/dist/index.js +568 -427
- package/dist/index.js.map +1 -1
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.18.0",
|
|
4
4
|
"description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transit",
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"b-e-b-o-o",
|
|
68
68
|
"Ben Standaert",
|
|
69
69
|
"mattkinnia",
|
|
70
|
-
"Théophile Helleboid <theophile.helleboid@transdev.com>"
|
|
70
|
+
"Théophile Helleboid <theophile.helleboid@transdev.com>",
|
|
71
|
+
"mishamaliga",
|
|
72
|
+
"Magnus Petersen-Paaske"
|
|
71
73
|
],
|
|
72
74
|
"type": "module",
|
|
73
75
|
"main": "./dist/index.js",
|
|
@@ -82,9 +84,10 @@
|
|
|
82
84
|
},
|
|
83
85
|
"scripts": {
|
|
84
86
|
"prepare": "husky",
|
|
85
|
-
"test": "node --
|
|
87
|
+
"test": "node --test --test-reporter=spec src/test/**/*.test.ts",
|
|
86
88
|
"build": "tsup",
|
|
87
|
-
"build-watch": "tsup --watch"
|
|
89
|
+
"build-watch": "tsup --watch",
|
|
90
|
+
"lint": "eslint \"src/**/*.ts\""
|
|
88
91
|
},
|
|
89
92
|
"exports": {
|
|
90
93
|
".": {
|
|
@@ -105,35 +108,32 @@
|
|
|
105
108
|
"lodash-es": "4.17.21",
|
|
106
109
|
"long": "5.3.2",
|
|
107
110
|
"node-stream-zip": "1.15.0",
|
|
108
|
-
"pluralize": "8.0.0",
|
|
109
111
|
"pretty-error": "4.0.0",
|
|
110
112
|
"promise-map-series": "0.3.0",
|
|
111
113
|
"sanitize-filename": "1.6.3",
|
|
112
114
|
"sqlstring-sqlite": "0.1.1",
|
|
113
115
|
"strip-bom-stream": "5.0.0",
|
|
114
116
|
"tempy": "3.1.0",
|
|
115
|
-
"timer-machine": "1.1.0",
|
|
116
|
-
"untildify": "5.0.0",
|
|
117
117
|
"yargs": "18.0.0",
|
|
118
|
-
"yoctocolors": "2.1.
|
|
118
|
+
"yoctocolors": "2.1.2"
|
|
119
119
|
},
|
|
120
120
|
"devDependencies": {
|
|
121
|
+
"@eslint/config-helpers": "0.3.1",
|
|
122
|
+
"@eslint/eslintrc": "3.3.1",
|
|
123
|
+
"@eslint/js": "9.34.0",
|
|
121
124
|
"@types/better-sqlite3": "7.6.13",
|
|
122
125
|
"@types/geojson": "7946.0.16",
|
|
123
|
-
"@types/jest": "30.0.0",
|
|
124
126
|
"@types/lodash-es": "4.17.12",
|
|
125
127
|
"@types/node": "22",
|
|
126
|
-
"@types/pluralize": "0.0.33",
|
|
127
|
-
"@types/timer-machine": "1.1.3",
|
|
128
128
|
"@types/yargs": "17.0.33",
|
|
129
|
+
"eslint": "9.34.0",
|
|
130
|
+
"globals": "16.3.0",
|
|
129
131
|
"husky": "9.1.7",
|
|
130
|
-
"
|
|
131
|
-
"lint-staged": "16.1.4",
|
|
132
|
+
"lint-staged": "16.1.5",
|
|
132
133
|
"prettier": "3.6.2",
|
|
133
|
-
"ts-jest": "29.4.1",
|
|
134
|
-
"ts-node": "10.9.2",
|
|
135
134
|
"tsup": "8.5.0",
|
|
136
|
-
"typescript": "5.9.2"
|
|
135
|
+
"typescript": "5.9.2",
|
|
136
|
+
"typescript-eslint": "8.41.0"
|
|
137
137
|
},
|
|
138
138
|
"engines": {
|
|
139
139
|
"node": ">= 20.11.0"
|