-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"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.1.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.27.0",
"prh": "^5.4.4",
"textlint-rule-helper": "^2.3.1"
},
"devDependencies": {
"@textlint/legacy-textlint-core": "^14.6.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"textlint": "14.6.0",
"textlint-scripts": "^14.6.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"
}
},
"packageManager": "[email protected]+sha512.96eb611483f49c55f7fa74df61b588de9e213f80a256728e6798ddc67176c7b07e4a1cfc7de8922422cbce02543714367037536955221fa451b0c4fefaf20c66"
}