-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.5 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
{
"name": "textlint-rule-prh",
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-rule/textlint-rule-prh.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-rule/textlint-rule-prh",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-prh/issues"
},
"version": "6.0.0",
"description": "textlint rule for prh.",
"main": "lib/textlint-rule-prh.js",
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"keywords": [
"textlint",
"prh"
],
"dependencies": {
"@babel/parser": "^7.26.2",
"prh": "^5.4.4",
"textlint-rule-helper": "^2.3.1"
},
"devDependencies": {
"@textlint/legacy-textlint-core": "^14.3.0",
"lint-staged": "^15.2.10",
"prettier": "^3.2.4",
"textlint": "14.3.0",
"textlint-scripts": "^14.3.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
}