-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 2.3 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
{
"name": "transit-departures-widget",
"description": "Build a realtime transit departures tool from GTFS and GTFS-Realtime.",
"version": "2.5.2",
"keywords": [
"transit",
"gtfs",
"transportation",
"gtfs-rt",
"gtfs-realtime"
],
"private": false,
"author": "Brendan Nee <[email protected]>",
"homepage": "https://github.com/BlinkTagInc/transit-departures-widget",
"bugs": {
"url": "https://github.com/BlinkTagInc/transit-departures-widget"
},
"repository": "git://github.com/BlinkTagInc/transit-departures-widget",
"contributors": [
"Wojciech Kulesza <[email protected]>",
"eMerzh"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"prepare": "husky",
"start": "node dist/app"
},
"bin": {
"transit-departures-widget": "dist/bin/transit-departures-widget.js"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"express": "^4.21.2",
"gtfs": "^4.15.11",
"i18n": "^0.15.1",
"js-beautify": "^1.15.1",
"lodash-es": "^4.17.21",
"morgan": "^1.10.0",
"pretty-error": "^4.0.0",
"pug": "^3.0.3",
"sanitize-filename": "^1.6.3",
"sqlstring-sqlite": "^0.1.1",
"timer-machine": "^1.1.0",
"toposort": "^2.0.2",
"untildify": "^5.0.0",
"yargs": "^17.7.2",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/i18n": "^0.13.12",
"@types/js-beautify": "^1.14.3",
"@types/lodash-es": "^4.17.12",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.1",
"@types/pug": "^2.0.10",
"@types/timer-machine": "^1.1.3",
"@types/toposort": "^2.0.7",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">= 14.15.4"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
},
"hooks": {
"after:bump": "npm run build"
}
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": "prettier --write",
"*.json": "prettier --write"
}
}