-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1010 Bytes
/
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
{
"name": "textlint-rule-max-comma",
"version": "4.0.0",
"description": "textlint rule that limit maxinum comma(,) count of sentence.",
"main": "lib/textlint-rule-max-comma.js",
"files": [
"src",
"lib"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azu/textlint-rule-max-comma.git"
},
"keywords": [
"textlint",
"english"
],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/textlint-rule-max-comma/issues"
},
"homepage": "https://github.com/azu/textlint-rule-max-comma#readme",
"devDependencies": {
"textlint-scripts": "^13.4.1",
"textlint-tester": "^13.4.1"
},
"dependencies": {
"sentence-splitter": "^5.0.0",
"textlint-util-to-string": "^3.3.4"
}
}