-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "textlint-rule-no-doubled-conjunction",
"version": "3.0.0",
"description": "textlint rule plugin to check duplicated conjunctions.",
"main": "lib/no-doubled-conjunction.js",
"files": [
"lib",
"src"
],
"dependencies": {
"kuromojin": "^3.0.0",
"sentence-splitter": "^5.0.0",
"textlint-rule-helper": "^2.3.1"
},
"devDependencies": {
"@textlint/types": "^13.4.1",
"textlint-scripts": "^13.4.1"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"textlint": "textlint"
},
"keywords": [
"textlint",
"rule"
],
"author": "takahashim <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/textlint-ja/textlint-rule-no-doubled-conjunction.git"
},
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-no-doubled-conjunction/issues"
},
"homepage": "https://github.com/textlint-ja/textlint-rule-no-doubled-conjunction"
}