-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "textlint-rule-no-dropping-the-ra",
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-ja/textlint-rule-no-dropping-the-ra.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-ja/textlint-rule-no-dropping-the-ra",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-no-dropping-the-ra/issues"
},
"version": "3.0.0",
"main": "lib/no-dropping-the-ra.js",
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"keywords": [
"textlint",
"textlintrule"
],
"description": "ら抜き言葉を検出するtextlint rule",
"devDependencies": {
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"textlint-scripts": "^3.0.0"
},
"dependencies": {
"kuromojin": "^3.0.0",
"textlint-rule-helper": "^2.1.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}