-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 906 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
36
37
38
39
40
{
"name": "mystem3",
"version": "1.2.1",
"description": "NodeJS wrapper for the Yandex MyStem 3",
"main": "lib/MyStem.js",
"scripts": {
"postinstall": "node bin/download-mystem.js",
"test": "mocha --timeout 1000 --ui qunit tests/*"
},
"repository": {
"type": "git",
"url": "https://github.com/koorchik/node-mystem3.git"
},
"keywords": [
"NLP",
"morphology",
"yandex",
"stemming",
"lemmatization"
],
"author": "koorchik",
"license": "ISC",
"bugs": {
"url": "https://github.com/koorchik/node-mystem3/issues"
},
"homepage": "https://github.com/koorchik/node-mystem3",
"dependencies": {
"bluebird": "^3.5.4",
"extract-zip": "^1.6.7",
"mkdirp": "^0.5.0",
"path": "^0.12.7",
"request": "^2.55.0",
"rimraf": "^2.6.3",
"tar": "^4.4.8"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4"
}
}