-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
112 lines (112 loc) · 2.6 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
{
"name": "gtfs-to-html",
"version": "2.9.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 <brendan@blinktag.com>",
"contributors": [
"Evan Siroky <evan.siroky@yahoo.com>",
"Nathan Selikoff",
"Aaron Antrim <aaron@trilliumtransit.com>",
"Thomas Craig <thomas@trilliumtransit.com>",
"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.1.0",
"@turf/simplify": "^7.1.0",
"archiver": "^7.0.1",
"cli-table": "^0.3.11",
"csv-stringify": "^6.5.1",
"express": "^4.20.0",
"gtfs": "^4.14.0",
"gtfs-realtime-pbf-js-module": "^1.0.0",
"insane": "^2.6.2",
"js-beautify": "^1.15.1",
"lodash-es": "^4.17.21",
"marked": "^14.1.2",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"pbf": "^4.0.1",
"pretty-error": "^4.0.0",
"pug": "^3.0.3",
"puppeteer": "^23.3.0",
"sanitize-filename": "^1.6.3",
"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/express": "^4.17.21",
"@types/lodash-es": "^4.17.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.16.5",
"@types/timer-machine": "^1.1.3",
"@types/yargs": "^17.0.33",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
},
"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"
}
}