-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "alexa-app-server",
"version": "3.0.3",
"description": "A web server module for Alexa (Amazon Echo) apps (skills) using Node.js, Express, and alexa-app.",
"main": "index.js",
"author": "Matt Kruse",
"repository": {
"type": "git",
"url": "https://github.com/alexa-js/alexa-app-server.git"
},
"bugs": {
"url": "https://github.com/alexa-js/alexa-app-server/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec",
"coverage_local": "istanbul cover node_modules/mocha/bin/_mocha",
"danger": "./node_modules/.bin/danger"
},
"license": "MIT",
"dependencies": {
"alexa-app": "^3.2.0",
"bluebird": "^3.4.7",
"body-parser": "~1.16.0",
"ejs": "~2.5.5",
"express": "~4.14.1",
"hotswap": "^1.1.0",
"lodash.defaults": "^4.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"danger": "0.11.4",
"istanbul": "0.4.5",
"mocha": "^3.2.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"supertest": "^3.0.0",
"tcp-port-used": "0.1.2"
}
}