-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "textlint-rule-sentence-length",
"version": "5.2.0",
"description": "textlint rule check sentence length",
"keywords": [
"rule",
"textlint"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-sentence-length",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-sentence-length/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"lib",
"src"
],
"main": "lib/sentence-length.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-rule/textlint-rule-sentence-length.git"
},
"scripts": {
"build": "textlint-scripts build",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"watch": "textlint-scripts build --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"@textlint/regexp-string-matcher": "^2.0.2",
"sentence-splitter": "^5.0.0",
"textlint-rule-helper": "^2.3.1",
"textlint-util-to-string": "^3.3.4"
},
"devDependencies": {
"@textlint/types": "^13.4.1",
"@types/node": "^20.10.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"textlint-plugin-html": "^1.0.0",
"textlint-scripts": "^13.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"email": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
}
}