gtfs 4.4.2 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -10
package/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ 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
+
8
14
  ## [4.4.2] - 2023-07-08
9
15
 
10
16
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs",
3
- "version": "4.4.2",
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",
@@ -69,10 +69,7 @@
69
69
  },
70
70
  "types": "@types",
71
71
  "scripts": {
72
- "dtslint": "dtslint @types",
73
- "lint": "eslint **/*.js",
74
- "lint-fix": "eslint **/*.js --fix",
75
- "test": "eslint **/*.js && NODE_ENV=test mocha ./test/mocha/**/*.js --timeout 2000"
72
+ "test": "NODE_ENV=test mocha ./test/mocha/**/*.js --timeout 2000"
76
73
  },
77
74
  "dependencies": {
78
75
  "@turf/helpers": "^6.5.0",
@@ -97,11 +94,6 @@
97
94
  "yoctocolors": "^1.0.0"
98
95
  },
99
96
  "devDependencies": {
100
- "@types/better-sqlite3": "^7.6.4",
101
- "dtslint": "^4.2.1",
102
- "eslint": "^8.44.0",
103
- "eslint-config-prettier": "^8.8.0",
104
- "eslint-config-xo": "^0.43.1",
105
97
  "husky": "^8.0.3",
106
98
  "lint-staged": "^13.2.3",
107
99
  "mocha": "^10.2.0",
@@ -126,6 +118,7 @@
126
118
  },
127
119
  "lint-staged": {
128
120
  "*.js": "prettier --write",
121
+ "*.ts": "prettier --write",
129
122
  "*.json": "prettier --write"
130
123
  }
131
124
  }