-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 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
47
48
{
"name": "ector",
"description": "ECTOR is a learning chatterbot.",
"version": "1.0.1",
"homepage": "https://github.com/parmentf/node-ector",
"author": {
"name": "François Parmentier",
"email": "francois.parmentier@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/parmentf/node-ector.git"
},
"bugs": {
"url": "https://github.com/parmentf/node-ector/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/parmentf/node-ector/blob/master/LICENSE-MIT"
}
],
"main": "lib/ector",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"concept-network": "1.2.0",
"debug": "^2.2.0",
"random-weighted-choice": "^0.1.2",
"sentence-tokenizer": "*",
"sugar": "^1.3.9"
},
"devDependencies": {
"mocha": "^2.3.4",
"docker": "0.2.x",
"jshint": "^2.9.1-rc1"
},
"keywords": [
"bot",
"chatterbot",
"learning"
],
"readmeFilename": "README.md"
}