forked from veer66/wordcut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "wordcut",
"description": "Thai word breaker for Node.js",
"version": "0.9.1",
"homepage": "https://github.com/veer66/wordcut",
"author": {
"name": "Vee Satayamas",
"email": "[email protected]"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/veer66/wordcut.git"
},
"bugs": {
"url": "https://github.com/veer66/wordcut/issues"
},
"licenses": [
{
"type": "LGPL",
"url": "http://www.gnu.org/licenses/lgpl.html"
}
],
"main": "lib/wordcut.js",
"bin": {
"wordcut": "./bin/wordcut"
},
"files": [
"data/tdict-*.txt",
"lib/*.js",
"bin"
],
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"word",
"thai",
"segmentation",
"break",
"boundary"
],
"dependencies": {
"body": "*",
"glob": "^5.0.14",
"underscore": "*"
},
"scripts": {
"test": "mocha test"
},
"devDependencies": {
"mocha": "*",
"chai": "*",
"brfs": "^1.4.1",
"browserify": "^11.2.0",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^1.4.1"
}
}