-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "textlint-rule-write-good",
"version": "2.0.0",
"description": "textlint rule to check your English style with write good",
"engines": {
"node": ">=12"
},
"main": "lib/write-good.js",
"scripts": {
"build": "textlint-scripts build",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"precommit": "lint-staged",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"files": [
"lib",
"src"
],
"keywords": [
"textlint",
"rule",
"english",
"proofreading"
],
"author": "nodaguti",
"license": "MIT",
"bugs": "https://github.com/textlint-rule/textlint-rule-write-good/issues",
"homepage": "https://github.com/textlint-rule/textlint-rule-write-good",
"repository": "textlint-rule/textlint-rule-write-good",
"dependencies": {
"textlint-rule-helper": "^2.3.1",
"write-good": "^1.0.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^11.2.6",
"prettier": "^2.3.1",
"textlint-scripts": "^12.6.1",
"textlint-tester": "^12.6.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
}
}