-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.39 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
{
"author": "shirayu",
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-no-dropping-i/issues"
},
"dependencies": {
"kuromojin": "^3.0.0",
"textlint-rule-helper": "^2.3.1"
},
"description": "い抜き言葉を検出するtextlint rule",
"devDependencies": {
"prettier": "^2.2.1",
"textlint-scripts": "^12.6.1"
},
"directories": {
"test": "test"
},
"files": [
"lib",
"src"
],
"homepage": "https://github.com/textlint-ja/textlint-rule-no-dropping-i",
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"keywords": [
"textlint"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"main": "lib/no-dropping-i.js",
"name": "@textlint-ja/textlint-rule-no-dropping-i",
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-ja/textlint-rule-no-dropping-i.git"
},
"scripts": {
"build": "textlint-scripts build",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prepublish": "npm run --if-present build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "textlint-scripts test",
"watch": "textlint-scripts build --watch"
},
"version": "3.0.0"
}