-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "textlint-rule-ja-no-redundant-expression",
"description": "冗長な表現を禁止するtextlintルール",
"version": "4.0.1",
"main": "lib/index.js",
"scripts": {
"test": "textlint-scripts test",
"docs": "node --require ts-node/register tools/update-readme.ts",
"prepublish": "npm run docs && npm run --if-present build",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepare": "git config --local core.hooksPath .githooks",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\""
},
"repository": {
"type": "git",
"url": "https://github.com/textlint-ja/textlint-rule-ja-no-redundant-expression.git"
},
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-ja-no-redundant-expression/issues"
},
"homepage": "https://github.com/textlint-ja/textlint-rule-ja-no-redundant-expression",
"devDependencies": {
"@textlint/types": "^12.1.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.19",
"add-text-to-markdown": "^2.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"textlint-scripts": "^12.1.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@textlint/regexp-string-matcher": "^1.1.0",
"kuromojin": "^3.0.0",
"morpheme-match": "^2.0.4",
"morpheme-match-all": "^2.0.5",
"textlint-rule-helper": "^2.2.1",
"textlint-util-to-string": "^3.1.1"
},
"keywords": [
"textlintrule"
],
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}