-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "textlint-rule-en-max-word-count",
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-rule/textlint-rule-en-max-word-count.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-rule/textlint-rule-en-max-word-count",
"license": "MIT",
"files": [
"src/",
"lib/"
],
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-en-max-word-count/issues"
},
"version": "2.0.1",
"description": "textlint rule that specify the maximum word count of a sentence.",
"main": "lib/textlint-rule-en-max-word-count.js",
"directories": {
"test": "test"
},
"dependencies": {
"sentence-splitter": "^4.1.0",
"textlint-util-to-string": "^3.3.2"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@textlint/types": "^13.3.0",
"textlint-scripts": "^13.3.0",
"textlint-tester": "^13.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test"
},
"keywords": [
"textlint"
]
}