-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "@textlint-rule/textlint-rule-no-unmatched-pair",
"version": "2.0.4",
"description": "textlint rule that check unmatched pairs like \"(\" and \")\"",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-no-unmatched-pair",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-no-unmatched-pair/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"type": "commonjs",
"main": "lib/textlint-rule-no-unmatched-pair.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-no-unmatched-pair.git"
},
"scripts": {
"build": "textlint-scripts build",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"watch": "textlint-scripts build --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"textlint-scripts": "^14.3.0",
"textlint-tester": "^14.3.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"dependencies": {
"sentence-splitter": "^5.0.0",
"textlint-rule-helper": "^2.3.1"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}