-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.49 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
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "textlint-rule-en-capitalization",
"version": "2.0.3",
"description": "textlint rule that check capitalization in english text.",
"main": "lib/textlint-rule-en-capitalization.js",
"scripts": {
"test": "textlint-scripts test",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"prepublish": "npm run --if-present build",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch"
},
"keywords": [
"textlintrule"
],
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-en-capitalization.git"
},
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-en-capitalization/issues"
},
"homepage": "https://github.com/textlint-rule/textlint-rule-en-capitalization",
"devDependencies": {
"babel-register": "^6.26.0",
"husky": "^2.1.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"textlint-scripts": "^3.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"en-pos": "^1.0.16",
"sentence-splitter": "^3.0.11",
"textlint-rule-helper": "^2.1.1"
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
}