forked from gatsbyjs/gatsby-ja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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
{
"maintainers": [
"hirotaka (https://github.com/hirotaka)",
"Naturalclar (https://github.com/Naturalclar)",
"uetchy (https://github.com/uetchy)",
"smorimoto (https://github.com/smorimoto)"
],
"license": "MIT",
"scripts": {
"format": "pretty-quick && textlint --cache $(git diff master --name-only) --fix",
"format:full": "pretty-quick && textlint --cache README.md docs/**/*.md --fix",
"lint": "textlint --cache $(git diff master --name-only) -f pretty-error",
"lint:full": "textlint --cache README.md \"docs/**/*.md\" -f pretty-error"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"*.md": [
"textlint --cache --fix"
]
},
"devDependencies": {
"husky": "4.2.5",
"lint-staged": "10.2.11",
"prettier": "2.1.2",
"pretty-quick": "2.0.1",
"textlint": "11.7.6",
"textlint-filter-rule-comments": "1.2.2",
"textlint-filter-rule-whitelist": "2.0.0",
"textlint-rule-ja-hiragana-fukushi": "1.2.0",
"textlint-rule-ja-hiragana-hojodoushi": "1.0.4",
"textlint-rule-ja-hiragana-keishikimeishi": "1.0.2",
"textlint-rule-ja-no-space-around-parentheses": "2.0.1",
"textlint-rule-ja-space-around-code": "2.0.1",
"textlint-rule-preset-ja-spacing": "2.0.2",
"textlint-rule-preset-ja-technical-writing": "4.0.1",
"textlint-rule-preset-jtf-style": "2.3.6"
}
}