forked from superscriptjs/superscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
64
65
66
67
68
69
70
71
{
"name": "superscript",
"version": "0.7.0",
"description": "A dialog system and bot engine for creating human-like chat bots.",
"main": "index.js",
"scripts": {
"test": "mocha test -R spec -s 1700 -t 50000"
},
"repository": {
"type": "git",
"url": "https://github.com/silentrob/superscript"
},
"homepage": "http://superscriptjs.com",
"bugs": {
"url": "https://github.com/silentrob/superscript/issues"
},
"bin": {
"parse": "bin/parse.js",
"bot-init": "bin/bot-init.js"
},
"author": "Rob Ellis",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/silentrob/superscript/master/LICENSE"
}
],
"dependencies": {
"WNdb": "~3.1.1",
"async": "^0.7.0",
"async-replace": "0.0.2",
"checksum": "^0.1.1",
"commander": "^2.4.0",
"crc": "^3.0.0",
"debug": "~0.8.0",
"deepmerge": "^0.2.7",
"lemmer": "0.1.1",
"mkdirp": "^0.5.0",
"moment": "~2.6.0",
"mongoose": "3.8.22",
"mongoose-findorcreate": "^0.1.2",
"mongoose-path-tree": "^1.3.5",
"natural": "~0.2.0",
"node-normalizer": "0.0.10",
"node-tense": "0.0.4",
"pluralize": "0.0.9",
"pos": "~0.1.5",
"qtypes": "0.1.0",
"require-dir": "~0.1.0",
"rhyme": "0.0.3",
"roman-numerals": "~0.3.2",
"sfacts": "0.0.12",
"string": "~1.8.1",
"syllablistic": "~0.1.0",
"underscore": "~1.6.0"
},
"devDependencies": {
"blanket": "~1.1.6",
"mkdirp": "^0.5.0",
"mocha": "~1.18.2",
"rmdir": "^1.0.4",
"should": "~3.3.1",
"conceptnet": "silentrob/conceptnet"
},
"config": {
"blanket": {
"pattern": "/lib",
"data-cover-never": "node_modules"
}
}
}