-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
76 lines (76 loc) · 2.55 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
72
73
74
75
76
{
"name": "superscript",
"version": "1.1.4",
"description": "A dialog system and bot engine for creating human-like chat bots.",
"main": "lib/bot/index.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"lint": "eslint --env node src *.js",
"test": "mocha --compilers js:babel-register test -R spec -s 1700 -t 300000 --recursive",
"prepublish": "npm run build",
"profile": "mocha --compilers js:babel-register test -R spec -s 1700 -t 300000 --prof --log-timer-events --recursive",
"dtest": "DEBUG=*,-mquery,-mocha*, mocha --compilers js:babel-register test -R spec -s 1700 -t 300000 --recursive",
"itest": "DEBUG=SS* DEBUG_LEVEL=info mocha --compilers js:babel-register test -R spec -s 1700 -t 300000 --recursive",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --compilers js:babel-register -R spec test -s 1700 -t 300000 --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/superscriptjs/superscript"
},
"homepage": "http://superscriptjs.com",
"bugs": {
"url": "https://github.com/superscriptjs/superscript/issues"
},
"bin": {
"bot-init": "lib/bin/bot-init.js",
"cleanup": "lib/bin/cleanup.js",
"parse": "lib/bin/parse.js"
},
"author": "Rob Ellis",
"contributors": [
"Rob Ellis <[email protected]>",
"Issam Hakimi <[email protected]>",
"Marius Ursache <[email protected]>",
"Michael Lewkowitz <[email protected]>",
"John Wehr <[email protected]>",
"Ben James <[email protected]>"
],
"license": "MIT",
"dependencies": {
"async": "^2.5.0",
"commander": "^2.11.0",
"debug": "^2.6.3",
"debug-levels": "^0.2.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"mongo-tenant": "^1.0.4",
"mongoose": "^4.11.5",
"natural": "^0.5.4",
"pegjs": "^0.10.0",
"pluralize": "^4.0.0",
"require-dir": "^0.3.1",
"rhymes": "^1.0.1",
"roman-numerals": "^0.3.2",
"safe-eval": "^0.3.0",
"sfacts": "^1.0.1",
"ss-message": "^1.1.4",
"ss-parser": "^1.0.3",
"syllablistic": "^0.1.0",
"wordpos": "^1.1.5"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.0",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.5.0",
"should": "^11.2.1"
}
}