-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "aws-bot",
"version": "0.0.0",
"description": "AWS chatbot challenge entry.",
"contributors": [
"Brendan Goodenough <[email protected]>",
"Alex Thomassen"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "babel-node src",
"test": "gulp eslint && gulp mocha"
},
"dependencies": {
"aws-sdk": "^2.56.0",
"config": "^1.26.1",
"discord.js": "^11.1.0"
},
"devDependencies": {
"aws-sdk-mock": "^1.7.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^4.3.1",
"gulp-util": "^3.0.8",
"jszip": "^3.1.3",
"mocha": "^3.4.1",
"sinon": "^2.3.1",
"sinon-chai": "^2.10.0"
},
"private": true
}