-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 820 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
{
"name": "chinese-seg",
"version": "0.0.6",
"description": "Implement Chinese text segmentation algorithm",
"main": "index.js",
"scripts": {
"test": "tap test/*-test.coffee --stderr --timeout 5"
},
"repository": {
"type": "git",
"url": "https://github.com/jacobbubu/chinese-seg"
},
"keywords": [
"chinese",
"segmentation"
],
"author": "Rong Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobbubu/chinese-seg/issues"
},
"homepage": "https://github.com/jacobbubu/chinese-seg",
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.8.0",
"tap": "~0.4.6"
},
"dependencies": {
"errno": "~0.1.0",
"hanzenkaku": "~1.0.1",
"xtend": "~2.1.2",
"deep-equal": "~0.2.1"
}
}