-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.57 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
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "textlint-rule-prefer-tari-tari",
"version": "1.0.3",
"description": "「〜たり〜たりする」をチェックするtextlintルール",
"main": "lib/textlint-rule-prefer-tari-tari.js",
"scripts": {
"test": "textlint-scripts test",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"precommit": "lint-staged",
"postcommit": "git reset",
"prepublish": "npm run --if-present build",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepare": "git config --local core.hooksPath .githooks"
},
"keywords": [
"textlintrule"
],
"repository": {
"type": "git",
"url": "https://github.com/textlint-ja/textlint-rule-prefer-tari-tari.git"
},
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-prefer-tari-tari/issues"
},
"homepage": "https://github.com/textlint-ja/textlint-rule-prefer-tari-tari",
"devDependencies": {
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"textlint-scripts": "1.4.2"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"dependencies": {
"nlcst-parse-japanese": "^1.1.2",
"nlcst-pattern-match": "^1.3.3",
"nlcst-to-string": "^2.0.1",
"textlint-rule-helper": "^2.0.0",
"textlint-util-to-string": "^2.1.1"
}
}