forked from BYVoid/OpenCC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "opencc",
"version": "1.1.7",
"description": "Conversion between Traditional and Simplified Chinese",
"author": "Carbo Kuo <[email protected]>",
"license": "Apache-2.0",
"main": "node/opencc.js",
"types": "node/opencc.d.ts",
"scripts": {
"test": "mocha -R spec node/test.js",
"deploy": "node-pre-gyp package && (node-pre-gyp-github publish --release || exit 0)",
"install": "node-pre-gyp install --fallback-to-build || node-pre-gyp rebuild"
},
"engines": {
"node": ">= 8.0.0"
},
"binary": {
"module_name": "opencc",
"module_path": "./build/Release/",
"host": "https://github.com/BYVoid/OpenCC/releases/download/",
"remote_path": "{version}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BYVoid/OpenCC.git"
},
"bugs": {
"url": "https://github.com/BYVoid/OpenCC/issues"
},
"homepage": "https://github.com/BYVoid/OpenCC#readme",
"keywords": [
"opencc",
"Chinese",
"conversion",
"unicode",
"Simplified Chinese",
"Traditional Chinese"
],
"devDependencies": {
"mocha": "^8.3.0",
"node-pre-gyp-github": "^1.4.3"
},
"dependencies": {
"nan": "^2.14.2",
"node-pre-gyp": "^0.14.0"
}
}