-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "vntk",
"version": "1.4.4",
"description": "Vietnamese NLP Toolkit for Node",
"main": "index.js",
"types": "./@types/index.d.ts",
"bin": {
"vntk": "./bin/vntk.js"
},
"scripts": {
"server": "node server/app.js",
"start": "npm run server",
"test": "tape test/start.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vunb/vntk.git"
},
"keywords": [
"vntk",
"vietnamese",
"toolkit",
"nlp"
],
"author": "Vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/vunb/vntk/issues"
},
"homepage": "https://github.com/vunb/vntk",
"dependencies": {
"@vntk/dictionary": "^1.0.0",
"async": "2.0.1",
"commander": "2.9.0",
"crfsuite": "^1.0.0",
"debug": "^3.1.0",
"fasttext": "^1.0.0",
"lodash": "^4.17.14",
"title-case": "^2.1.1"
},
"devDependencies": {
"@kites/common": "^1.2.5",
"@kites/core": "^1.2.5",
"@kites/express": "^1.2.5",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
},
"files": [
"bin",
"lib",
"@types",
"index.js",
"README.md"
]
}