forked from yanyiwu/nodejieba
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 877 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 877 Bytes
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
{
"name": "nodejieba",
"description": "chinese word segmentation for node",
"version": "1.4.5",
"author": "Yanyi Wu <i@yanyiwu.com>",
"maintainers": [
"Yanyi Wu <i@yanyiwu.com>"
],
"main": "./index.js",
"engines": {
"node": ">= 0.10.0",
"iojs": ">= 1.0.0"
},
"repository": {
"type": "git",
"url": "http://github.com/yanyiwu/nodejieba.git"
},
"keywords": [
"chinese",
"segment",
"cppjieba",
"jieba",
"中文分词",
"结巴分词"
],
"dependencies": {
"nan": "~2.1.0"
},
"devDependencies": {
"mocha": "~2.3.4",
"should": "~7.1.1",
"istanbul": "~0.2.4",
"coveralls": "~2.7.1"
},
"scripts": {
"test": "node test/demo.js && node test/load_dict_demo.js && mocha --timeout 10s -R spec test/test.js && mocha --timeout 10s -R spec test/load_dict_test.js"
},
"license": "MIT"
}