-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 1.83 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
{
"name": "gtfs-tts",
"description": "Review GTFS stop pronunciations to determine which stops need a tts_stop_name value.",
"version": "0.3.1",
"keywords": [
"transit",
"gtfs",
"transportation",
"text-to-speech",
"accessibility"
],
"private": false,
"author": "Brendan Nee <brendan@blinktag.com>",
"homepage": "https://github.com/BlinkTagInc/gtfs-tts",
"bugs": {
"url": "https://github.com/BlinkTagInc/gtfs-tts"
},
"repository": "git://github.com/BlinkTagInc/gtfs-tts",
"contributors": [
"Scott Berkley"
],
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "husky",
"build": "tsup"
},
"bin": {
"gtfs-tts": "dist/bin/gtfs-tts.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"chalk": "^5.3.0",
"gtfs": "4.14.5",
"lodash-es": "^4.17.21",
"pretty-error": "^4.0.0",
"readline-sync": "^1.4.10",
"sanitize-filename": "^1.6.3",
"say": "^0.16.0",
"untildify": "^5.0.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">= 20.11.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.6",
"@types/readline-sync": "^1.4.8",
"@types/yargs": "^17.0.33",
"eslint": "^9.11.1",
"eslint-config-xo": "^0.46.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"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"
}
}