-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "textlint-rule-no-exclamation-question-mark",
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-no-exclamation-question-mark.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-rule/textlint-rule-no-exclamation-question-mark",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-no-exclamation-question-mark/issues"
},
"files": [
"src/",
"lib/"
],
"version": "1.1.0",
"description": "textlint rule that disallow exclamation and question mark.",
"main": "lib/textlint-rule-no-exclamation-question-mark.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "textlint-scripts test",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"textlint-scripts": "^3.0.0"
},
"dependencies": {
"@textlint/regexp-string-matcher": "^1.1.0",
"match-index": "^1.0.3",
"textlint-rule-helper": "^2.1.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}