-
-
Notifications
You must be signed in to change notification settings - Fork 280
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "nodejieba",
"description": "chinese word segmentation for node",
"version": "3.4.4",
"author": "Yanyi Wu <wuyanyi09@foxmail.com>",
"maintainers": [
"Yanyi Wu <wuyanyi09@foxmail.com>"
],
"main": "./index.js",
"typings": "types/index.d.ts",
"engines": {
"node": ">= 10.20.0"
},
"repository": {
"type": "git",
"url": "http://github.com/yanyiwu/nodejieba.git"
},
"keywords": [
"chinese",
"segment",
"cppjieba",
"jieba",
"中文分词",
"结巴分词"
],
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"node-addon-api": "^3.0.2"
},
"devDependencies": {
"mocha": "~10.7.3",
"node-pre-gyp-github": "^1.4.3",
"should": "~8.3.1",
"typescript": "^3.0.1"
},
"scripts": {
"test": "mocha --timeout 10s -R spec test/test.js && mocha --timeout 10s -R spec test/load_dict_test.js",
"install": "node-pre-gyp install --fallback-to-build",
"rebuild": "node-pre-gyp rebuild"
},
"binary": {
"module_name": "nodejieba",
"module_path": "./build/Release/",
"host": "https://github.com/yanyiwu/nodejieba/releases/download/",
"remote_path": "v{version}",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz"
},
"license": "MIT"
}