-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "textlint-rule-no-nfd",
"repository": {
"type": "git",
"url": "https://github.com/textlint-ja/textlint-rule-no-nfd.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-ja/textlint-rule-no-nfd",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-ja/textlint-rule-no-nfd/issues"
},
"files": [
"src/",
"lib/"
],
"version": "2.0.2",
"description": "textlint rule that disallow to use NFD like 濁点.",
"main": "lib/textlint-rule-no-nfd.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "textlint-scripts test",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build"
},
"keywords": [
"textlint"
],
"devDependencies": {
"@textlint/types": "^13.3.2",
"@types/node": "^20.2.5",
"textlint-scripts": "^13.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"match-index": "^1.0.3",
"textlint-rule-helper": "^2.3.0"
}
}