-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
117 lines (117 loc) · 2.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "gtfs-to-html",
"version": "2.10.8",
"private": false,
"description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
"keywords": [
"transit",
"gtfs",
"gtfs-realtime",
"transportation",
"timetables"
],
"homepage": "https://gtfstohtml.com",
"bugs": {
"url": "https://github.com/blinktaginc/gtfs-to-html/issues"
},
"repository": "git://github.com/blinktaginc/gtfs-to-html",
"license": "MIT",
"author": "Brendan Nee <[email protected]>",
"contributors": [
"Evan Siroky <[email protected]>",
"Nathan Selikoff",
"Aaron Antrim <[email protected]>",
"Thomas Craig <[email protected]>",
"Holly Kvalheim",
"Pawajoro",
"Andrea Mignone",
"Evo Stamatov"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"docker",
"examples",
"views/default",
"config-sample.json"
],
"bin": {
"gtfs-to-html": "dist/bin/gtfs-to-html.js"
},
"scripts": {
"build": "tsup",
"start": "node ./dist/app",
"prepare": "husky"
},
"dependencies": {
"@turf/helpers": "^7.2.0",
"@turf/simplify": "^7.2.0",
"anchorme": "^3.0.8",
"archiver": "^7.0.1",
"cli-table": "^0.3.11",
"csv-stringify": "^6.5.2",
"express": "^5.0.1",
"gtfs": "^4.15.12",
"gtfs-realtime-pbf-js-module": "^1.0.0",
"js-beautify": "^1.15.1",
"lodash-es": "^4.17.21",
"marked": "^15.0.6",
"moment": "^2.30.1",
"pbf": "^4.0.1",
"pretty-error": "^4.0.0",
"pug": "^3.0.3",
"puppeteer": "^24.0.0",
"sanitize-filename": "^1.6.3",
"sanitize-html": "^2.14.0",
"sqlstring": "^2.3.3",
"timer-machine": "^1.1.0",
"toposort": "^2.0.2",
"untildify": "^5.0.0",
"yargs": "^17.7.2",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/express": "^5.0.0",
"@types/insane": "^1.0.0",
"@types/js-beautify": "^1.14.3",
"@types/lodash-es": "^4.17.12",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.5",
"@types/pug": "^2.0.10",
"@types/sanitize-html": "^2.13.0",
"@types/timer-machine": "^1.1.3",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">= 20.11.0"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
},
"hooks": {
"after:bump": "npm run build"
}
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write",
"*.json": "prettier --write"
}
}