-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "textlint-rule-no-doubled-joshi",
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-ja/textlint-rule-no-doubled-joshi.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-ja/textlint-rule-no-doubled-joshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-no-doubled-joshi/issues"
},
"version": "5.1.0",
"description": "textlint rule check doubled joshi",
"main": "lib/no-doubled-joshi.js",
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"keywords": [
"rule",
"textlint",
"textlintrule"
],
"devDependencies": {
"@textlint/types": "^13.4.1",
"@types/node": "^20.10.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"textlint-scripts": "^13.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"kuromojin": "^3.0.0",
"sentence-splitter": "^5.0.0",
"textlint-rule-helper": "^2.3.1",
"textlint-util-to-string": "^3.3.4"
},
"resolutions": {
"@textlint/types": "^13.2.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}