forked from kengz/spacy-nlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "spacy-nlp",
"version": "1.0.7",
"description": "Expose Spacy nlp text parsing to Nodejs (and other languages) via socketIO",
"main": "index.js",
"scripts": {
"start": "node src/start-io.js",
"test": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kengz/spacy-nlp.git"
},
"keywords": [
"spacy",
"nlp",
"parse",
"parsing",
"parser",
"socketIO",
"python",
"POS",
"NER",
"syntaxnet"
],
"author": "kengz [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/kengz/spacy-nlp/issues"
},
"homepage": "https://github.com/kengz/spacy-nlp#readme",
"dependencies": {
"bluebird": "^3.4.6",
"lodash": "^4.16.4",
"poly-socketio": "^1.1.1",
"portscanner": "^1.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"codeclimate-test-reporter": "^0.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0"
}
}