-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "is-cjk-hanzi",
"version": "1.0.0",
"description": "Whether a character is a (single) cjk hanzi",
"main": "dist/index.js",
"scripts": {
"test": "ava",
"build": "tsc",
"prepublishOnly": "npm run build",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarvNC/is-cjk-hanzi.git"
},
"keywords": [
"japanese",
"chinese",
"hanzi",
"kanji",
"text-utils"
],
"author": "MarvNC",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarvNC/is-cjk-hanzi/issues"
},
"homepage": "https://github.com/MarvNC/is-cjk-hanzi#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"ava": "^6.1.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@gerhobbelt/xregexp": "^4.4.0-32",
"@stdlib/assert-has-utf16-surrogate-pair-at": "^0.1.0"
}
}