forked from superscriptjs/superscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.63 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "superscript",
"version": "0.12.2",
"description": "A dialog system and bot engine for creating human-like chat bots.",
"main": "index.js",
"scripts": {
"lint": "eslint --env node lib *.js",
"test": "mocha test -R spec -s 1700 -t 300000",
"profile": "mocha test -R spec -s 1700 -t 300000 --prof --log-timer-events",
"dtest": "DEBUG=*,-mquery,-mocha*, mocha test -R spec -s 1700 -t 300000",
"itest": "DEBUG=SS* DEBUG_LEVEL=info mocha test -R spec -s 1700 -t 300000",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec test -s 1700 -t 300000"
},
"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",
"bot-cleanup": "bin/cleanup.js"
},
"author": "Rob Ellis",
"contributors": [
"Rob Ellis <rob@silentrob.me>",
"Issam Hakimi <issam.hakimi@googlemail.com>",
"Marius Ursache <hello@mariusursache.com>",
"Michael Lewkowitz <michael@igniter.com>",
"John Wehr <johnwehr@gmail.com>"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/silentrob/superscript/master/LICENSE"
}
],
"dependencies": {
"async": "^1.5.2",
"async-replace": "^1.0.1",
"bluebird": "^3.0.5",
"checksum": "^0.1.1",
"commander": "^2.4.0",
"crc": "^3.0.0",
"debug": "^2.2.0",
"debug-levels": "^0.2.0",
"deepmerge": "^0.2.7",
"lemmer": "0.1.6",
"lodash": "^4.12.0",
"mkdirp": "^0.5.0",
"moment": "^2.13.0",
"mongodb": "^2.2.9",
"mongoose": "^4.5.10",
"mongoose-findorcreate": "^0.1.2",
"mongoose-path-tree": "^1.3.5",
"natural": "^0.4.0",
"node-normalizer": "^0.1.4",
"node-tense": "0.0.4",
"parts-of-speech": "^0.3.0",
"pluralize": "2.0.0",
"qtypes": "^0.1.6",
"re2": "^1.3.3",
"require-dir": "0.3.0",
"rhyme": "0.0.3",
"rimraf": "^2.4.4",
"roman-numerals": "~0.3.2",
"safe-eval": "^0.2.0",
"sfacts": "^0.2.0",
"ss-parser": "^0.5.0",
"string": "^3.3.1",
"syllablistic": "~0.1.0"
},
"devDependencies": {
"blanket": "~1.1.6",
"bluebird": "^2.9.34",
"coveralls": "^2.11.9",
"eslint": "^0.23.0",
"istanbul": "^0.4.3",
"mkdirp": "^0.5.0",
"mocha": "^3.0.2",
"mongodb": "^2.0.39",
"rimraf": "^2.4.2",
"rmdir": "^1.0.4",
"should": "^11.1.0"
},
"config": {
"blanket": {
"pattern": "/lib",
"data-cover-never": "node_modules"
}
}
}