-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (49 loc) · 1.18 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
{
"name": "cecc",
"title": "Convert between Traditional Chinese and Simplified Chinese. 繁體中文↔簡體中文轉換",
"version": "3.1.0",
"description": "繁簡轉換函式庫 追求正確率 先解析詞性再繁簡轉換 繁體中文↔簡體中文轉換 Chinese converter between Traditional Chinese and Simplified Chinese.",
"keywords": [
"chinese-converter",
"chinese-simplified",
"chinese-traditional",
"simplified-chinese",
"traditional-chinese",
"traditional-chinese-conversion"
],
"author": {
"name": "vimunci",
"email": "vimunci@gmail.com",
"url": "https://github.com/kanasimi/CeJS"
},
"contributors": [
"vimunci"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kanasimi/Chinese_converter/issues"
},
"homepage": "https://github.com/kanasimi/Chinese_converter",
"repository": {
"type": "git",
"url": "git+https://github.com/kanasimi/Chinese_converter.git"
},
"type": "commonjs",
"main": "Chinese_converter.js",
"scripts": {
"test": "node \"_test suite/test.js\""
},
"nyc": {
"exclude": [
"_test suite/*"
]
},
"engines": {
"node": ">=10.0"
},
"devDependencies": {
},
"dependencies": {
"cejs": "latest"
}
}