gtfs 4.4.1 → 4.4.3
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/.github/workflows/nodejs.yml +1 -1
- package/CHANGELOG.md +13 -0
- package/models/gtfs/stop-times.js +1 -0
- package/package.json +6 -12
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [4.4.3] - 2023-07-18
|
|
9
|
+
|
|
10
|
+
### Updated
|
|
11
|
+
|
|
12
|
+
- Dependency updates
|
|
13
|
+
|
|
14
|
+
## [4.4.2] - 2023-07-08
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Added index to stoptimes table for stop_id field
|
|
19
|
+
- Updated node.js versions for tests
|
|
20
|
+
|
|
8
21
|
## [4.4.1] - 2023-07-07
|
|
9
22
|
|
|
10
23
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.3",
|
|
4
4
|
"description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transit",
|
|
@@ -57,7 +57,8 @@
|
|
|
57
57
|
"Matt Moran",
|
|
58
58
|
"Daniel Sörlöv",
|
|
59
59
|
"Ali Zarghami <alizarghami@gmail.com>",
|
|
60
|
-
"David Abell"
|
|
60
|
+
"David Abell",
|
|
61
|
+
"Matthias Feist <matze@matf.de>"
|
|
61
62
|
],
|
|
62
63
|
"type": "module",
|
|
63
64
|
"main": "index.js",
|
|
@@ -68,10 +69,7 @@
|
|
|
68
69
|
},
|
|
69
70
|
"types": "@types",
|
|
70
71
|
"scripts": {
|
|
71
|
-
"
|
|
72
|
-
"lint": "eslint **/*.js",
|
|
73
|
-
"lint-fix": "eslint **/*.js --fix",
|
|
74
|
-
"test": "eslint **/*.js && NODE_ENV=test mocha ./test/mocha/**/*.js --timeout 2000"
|
|
72
|
+
"test": "NODE_ENV=test mocha ./test/mocha/**/*.js --timeout 2000"
|
|
75
73
|
},
|
|
76
74
|
"dependencies": {
|
|
77
75
|
"@turf/helpers": "^6.5.0",
|
|
@@ -96,11 +94,6 @@
|
|
|
96
94
|
"yoctocolors": "^1.0.0"
|
|
97
95
|
},
|
|
98
96
|
"devDependencies": {
|
|
99
|
-
"@types/better-sqlite3": "^7.6.4",
|
|
100
|
-
"dtslint": "^4.2.1",
|
|
101
|
-
"eslint": "^8.44.0",
|
|
102
|
-
"eslint-config-prettier": "^8.8.0",
|
|
103
|
-
"eslint-config-xo": "^0.43.1",
|
|
104
97
|
"husky": "^8.0.3",
|
|
105
98
|
"lint-staged": "^13.2.3",
|
|
106
99
|
"mocha": "^10.2.0",
|
|
@@ -108,7 +101,7 @@
|
|
|
108
101
|
"should": "^13.2.3"
|
|
109
102
|
},
|
|
110
103
|
"engines": {
|
|
111
|
-
"node": ">=
|
|
104
|
+
"node": ">= 18.0.0"
|
|
112
105
|
},
|
|
113
106
|
"release-it": {
|
|
114
107
|
"github": {
|
|
@@ -125,6 +118,7 @@
|
|
|
125
118
|
},
|
|
126
119
|
"lint-staged": {
|
|
127
120
|
"*.js": "prettier --write",
|
|
121
|
+
"*.ts": "prettier --write",
|
|
128
122
|
"*.json": "prettier --write"
|
|
129
123
|
}
|
|
130
124
|
}
|