gtfs-to-chart 2.0.7 → 2.0.8

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/.husky/pre-commit CHANGED
@@ -1,4 +1 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
-
4
1
  npx lint-staged
package/CHANGELOG.md CHANGED
@@ -1,52 +1,79 @@
1
1
  # Changelog
2
+
2
3
  All notable changes to this project will be documented in this file.
3
4
 
4
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7
 
8
+ ## [2.0.8] - 2024-07-23
9
+
10
+ ### Updated
11
+
12
+ - Dependency updates
13
+
7
14
  ## [2.0.7] - 2023-07-18
15
+
8
16
  ### Changed
17
+
9
18
  - Use lint-staged instead of pretty-quick
10
19
 
11
20
  ### Updated
21
+
12
22
  - Dependency updates
13
23
 
14
24
  ## [2.0.6] - 2023-05-04
25
+
15
26
  ### Updated
27
+
16
28
  - Dependency updates
17
29
 
18
30
  ## [2.0.5] - 2022-12-31
31
+
19
32
  ### Updated
33
+
20
34
  - Update to node-gtfs v4
21
35
  - Dependency updates
22
36
  - Add Husky
23
37
 
24
38
  ## [2.0.4] - 2022-11-09
39
+
25
40
  ### Updated
41
+
26
42
  - Dependency updates
27
43
 
28
44
  ### Fixed
45
+
29
46
  - Fixed charts path in generated charts HTML
30
47
 
31
48
  ## [2.0.3] - 2022-06-25
49
+
32
50
  ### Updated
51
+
33
52
  - Dependency updates
34
53
 
35
54
  ### Fixed
55
+
36
56
  - Fixed charts path in generated index.html
37
57
 
38
58
  ## [2.0.2] - 2022-06-25
59
+
39
60
  ### Updated
61
+
40
62
  - Dependency updates
41
63
  - Readme udpates
42
64
 
43
65
  ## [2.0.1] - 2021-08-17
66
+
44
67
  ### Updated
68
+
45
69
  - Dependency updates
46
70
 
47
71
  ### Fixed
72
+
48
73
  - Fixes for no shape_dist_traveled
49
74
 
50
75
  ## [2.0.0] - 2021-05-14
76
+
51
77
  ### Breaking Changes
78
+
52
79
  - Converted to ES6 Module
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs-to-chart",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "private": false,
5
5
  "description": "Generate stringline charts of a transit routes from GTFS",
6
6
  "keywords": [
@@ -24,20 +24,20 @@
24
24
  },
25
25
  "scripts": {
26
26
  "start": "node ./app",
27
- "prepare": "husky install"
27
+ "prepare": "husky"
28
28
  },
29
29
  "dependencies": {
30
30
  "better-copy": "^1.0.4",
31
31
  "chalk": "^5.3.0",
32
32
  "connect-slashes": "^1.4.0",
33
- "express": "^4.18.2",
34
- "gtfs": "^4.4.3",
35
- "js-beautify": "^1.14.8",
33
+ "express": "^4.19.2",
34
+ "gtfs": "^4.13.1",
35
+ "js-beautify": "^1.15.1",
36
36
  "lodash-es": "^4.17.21",
37
- "moment": "^2.29.4",
37
+ "moment": "^2.30.1",
38
38
  "morgan": "^1.10.0",
39
39
  "progress": "^2.0.3",
40
- "pug": "^3.0.2",
40
+ "pug": "^3.0.3",
41
41
  "sanitize-filename": "^1.6.3",
42
42
  "simplify-geojson": "^1.0.5",
43
43
  "sqlstring": "^2.3.3",
@@ -46,12 +46,12 @@
46
46
  "yargs": "^17.7.2"
47
47
  },
48
48
  "devDependencies": {
49
- "husky": "^8.0.3",
50
- "lint-staged": "^13.2.3",
51
- "prettier": "^3.0.0"
49
+ "husky": "^9.1.1",
50
+ "lint-staged": "^15.2.7",
51
+ "prettier": "^3.3.3"
52
52
  },
53
53
  "engines": {
54
- "node": ">= 18.x"
54
+ "node": ">= 20.11.0"
55
55
  },
56
56
  "release-it": {
57
57
  "github": {