-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 953 Bytes
/
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
{
"name": "rock-paper-scissors",
"version": "0.0.1",
"main": "src/app/index.js",
"scripts": {
"test": "mocha test/*.spec.* test/**/*.spec.*",
"watch": "nodemon --inspect server.js",
"lint": "eslint src/ test/ server.js"
},
"author": "Wuelber Castillo",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.326.0",
"lambda-log": "^2.0.0",
"lodash": "^4.17.11",
"prettier": "^1.17.0",
"voxa": "^3.1.0"
},
"devDependencies": {
"alexa-mime": "^0.0.6",
"ask-cli": "^1.7.2",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"express": "^4.16.4",
"mocha": "^5.2.0",
"mocha-jenkins-reporter": "^0.4.0",
"mocha-junit-reporter": "^1.18.0",
"nock": "^10.0.0",
"nodemon": "^1.18.4",
"nyc": "^13.0.1",
"simple-mock": "^0.8.0"
},
"directories": {
"test": "test"
}
}