-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
63
64
65
66
67
68
{
"name": "textlint-filter-rule-allowlist",
"repository": {
"type": "git",
"url": "https://github.com/textlint/textlint-filter-rule-allowlist.git"
},
"author": "azu",
"email": "azuciao@gmail.com",
"homepage": "https://github.com/textlint/textlint-filter-rule-allowlist",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint/textlint-filter-rule-allowlist/issues"
},
"files": [
"src/",
"lib/"
],
"version": "4.0.0",
"main": "lib/textlint-filter-rule-allowlist.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"precommit": "lint-staged",
"postcommit": "git reset",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"keywords": [
"textlint",
"filter",
"rule"
],
"description": "textlint filter rule that filters any word by allowing lists.",
"devDependencies": {
"lint-staged": "^11.0.0",
"mocha": "^9.0.1",
"power-assert": "^1.6.1",
"prettier": "^2.3.2",
"textlint": "^12.0.0",
"textlint-rule-report-node-types": "^1.1.0",
"textlint-scripts": "^12.0.1"
},
"dependencies": {
"@textlint/ast-node-types": "^12.0.0",
"@textlint/get-config-base-dir": "^2.0.0",
"@textlint/regexp-string-matcher": "^1.1.0",
"js-yaml": "^4.1.0"
},
"peerDependencies": {
"textlint": ">= 9.0.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}