-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "@textlint-rule/textlint-rule-no-duplicate-abbr",
"version": "1.0.2",
"description": "textlint rule that avoid adding duplicated suffix word for Acronyms and Abbreviations.",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-no-duplicate-abbr",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-no-duplicate-abbr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-no-duplicate-abbr.git"
},
"license": "MIT",
"author": "azu",
"main": "lib/textlint-rule-no-duplicate-abbr.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"src/"
],
"scripts": {
"build-match-set": "ts-node-transpile-only ./tools/create-match-set.ts",
"test": "textlint-scripts test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"prepublishOnly": "npm run build",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@textlint/types": "^12.0.2",
"@types/node": "^16.11.1",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"textlint-scripts": "^12.0.2",
"textlint-tester": "^12.0.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"sudachi-synonyms-dictionary": "^9.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {}
}