-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.65 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
{
"name": "gtfs-accessibility-validator",
"version": "0.2.6",
"description": "Test GTFS for accessibility information",
"keywords": [
"transit",
"gtfs",
"transportation",
"accessibility"
],
"bugs": {
"url": "https://github.com/blinktaginc/gtfs-accessibility-validator/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/blinktaginc/gtfs-accessibility-validator.git"
},
"license": "MIT",
"author": "Brendan Nee <[email protected]>",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"gtfs-accessibility-validator": "dist/bin/gtfs-accessibility-validator.js"
},
"scripts": {
"prepare": "husky",
"build": "tsup"
},
"dependencies": {
"cli-table": "^0.3.11",
"color-contrast-checker": "^2.1.0",
"gtfs": "^4.15.10",
"lodash-es": "^4.17.21",
"pretty-error": "^4.0.0",
"yargs": "^17.7.2",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^22",
"@types/yargs": "^17.0.33",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.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"
}
}