-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "textlint-rule-ja-allowed-kanji",
"description": "textlint rule that allows only specified kanji characters for Japanese.",
"version": "1.0.1",
"author": {
"name": "matori"
},
"license": "MIT",
"keywords": [
"textlintrule",
"kanji"
],
"homepage": "https://github.com/matori/textlint-rule-ja-allowed-kanji#readme",
"bugs": {
"url": "https://github.com/matori/textlint-rule-ja-allowed-kanji/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matori/textlint-rule-ja-allowed-kanji.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/",
"src/"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"test": "mocha test/**/*.ts --require ts-node/register"
},
"dependencies": {
"@textlint/regexp-string-matcher": "^2.0.2"
},
"devDependencies": {
"@textlint/types": "^13.3.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.16",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"textlint-tester": "^13.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}