-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 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
67
68
69
{
"name": "@textlint-ja/textlint-rule-morpheme-match",
"version": "2.0.0",
"description": "形態素解析結果のTokenベースの辞書でマッチするtextlintルール",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/textlint-ja/textlint-rule-morpheme-match",
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-morpheme-match/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/textlint-rule-morpheme-match.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint-ja/textlint-rule-morpheme-match.git"
},
"scripts": {
"build": "textlint-scripts build",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"watch": "textlint-scripts build --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"devDependencies": {
"@textlint/types": "^1.5.4",
"@types/node": "^14.14.41",
"husky": "^1.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"textlint-scripts": "^3.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"kuromojin": "^3.0.0",
"morpheme-match-textlint": "^2.0.6",
"untildify": "^4.0.0"
}
}