-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "botstack",
"version": "0.2.1",
"description": "Bot Stack",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint --fix .",
"test": "node_modules/.bin/_mocha tests",
"cover": "node_modules/.bin/nyc node_modules/.bin/_mocha tests"
},
"author": {
"name": "Foster Labs",
"email": ""
},
"dependencies": {
"apiai": "^3.0.3",
"aws-sdk": "^2.5.3",
"bluebird": "^3.4.7",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"dashbot": "^0.7.4",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"mongoose": "^4.8.1",
"nock": "^9.1.5",
"node-botmetrics": "0.0.1",
"node-emoji": "^1.3.1",
"oauth2-server": "^2.4.1",
"proxy-method-missing": "^1.0.1",
"q": "^1.4.1",
"redis": "^2.6.5",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"restify": "^4.1.1",
"rewire": "^3.0.2",
"rewiremock": "^3.4.2",
"sinon": "^2.3.8",
"smooch-core": "^4.3.0",
"url-regex": "^4.1.1",
"uuid": "^3.0.1",
"winston": "^2.3.1"
},
"engines": {
"node": ">=7.10.1"
},
"devDependencies": {
"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.9.0",
"mocha": "^3.4.2",
"nyc": "^11.0.3"
}
}