gtfs 4.17.7 → 4.18.1
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 +14 -14
- package/dist/bin/gtfs-export.js +29 -4
- package/dist/bin/gtfs-export.js.map +1 -1
- package/dist/bin/gtfs-import.js +431 -343
- package/dist/bin/gtfs-import.js.map +1 -1
- package/dist/bin/gtfsrealtime-update.js +240 -183
- package/dist/bin/gtfsrealtime-update.js.map +1 -1
- package/dist/index.d.ts +431 -290
- package/dist/index.js +478 -383
- package/dist/index.js.map +1 -1
- package/dist/models/models.d.ts +19 -0
- package/dist/models/models.js +18 -0
- package/dist/models/models.js.map +1 -1
- package/package.json +18 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.18.1",
|
|
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
|
".": {
|
|
@@ -98,7 +101,7 @@
|
|
|
98
101
|
},
|
|
99
102
|
"dependencies": {
|
|
100
103
|
"@turf/helpers": "7.2.0",
|
|
101
|
-
"better-sqlite3": "12.
|
|
104
|
+
"better-sqlite3": "12.4.1",
|
|
102
105
|
"csv-parse": "6.1.0",
|
|
103
106
|
"csv-stringify": "6.6.0",
|
|
104
107
|
"gtfs-realtime-bindings": "1.1.1",
|
|
@@ -112,23 +115,25 @@
|
|
|
112
115
|
"strip-bom-stream": "5.0.0",
|
|
113
116
|
"tempy": "3.1.0",
|
|
114
117
|
"yargs": "18.0.0",
|
|
115
|
-
"yoctocolors": "2.1.
|
|
118
|
+
"yoctocolors": "2.1.2"
|
|
116
119
|
},
|
|
117
120
|
"devDependencies": {
|
|
121
|
+
"@eslint/config-helpers": "0.4.0",
|
|
122
|
+
"@eslint/eslintrc": "3.3.1",
|
|
123
|
+
"@eslint/js": "9.37.0",
|
|
118
124
|
"@types/better-sqlite3": "7.6.13",
|
|
119
125
|
"@types/geojson": "7946.0.16",
|
|
120
|
-
"@types/jest": "30.0.0",
|
|
121
126
|
"@types/lodash-es": "4.17.12",
|
|
122
|
-
"@types/node": "
|
|
127
|
+
"@types/node": "24",
|
|
123
128
|
"@types/yargs": "17.0.33",
|
|
129
|
+
"eslint": "9.37.0",
|
|
130
|
+
"globals": "16.4.0",
|
|
124
131
|
"husky": "9.1.7",
|
|
125
|
-
"
|
|
126
|
-
"lint-staged": "16.1.4",
|
|
132
|
+
"lint-staged": "16.2.4",
|
|
127
133
|
"prettier": "3.6.2",
|
|
128
|
-
"ts-jest": "29.4.1",
|
|
129
|
-
"ts-node": "10.9.2",
|
|
130
134
|
"tsup": "8.5.0",
|
|
131
|
-
"typescript": "5.9.
|
|
135
|
+
"typescript": "5.9.3",
|
|
136
|
+
"typescript-eslint": "8.46.1"
|
|
132
137
|
},
|
|
133
138
|
"engines": {
|
|
134
139
|
"node": ">= 20.11.0"
|