-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "alexa-app",
"version": "2.3.4",
"description": "A module to simplify creation of Alexa (Amazon Echo) apps (Skills) using Node.js",
"main": "index.js",
"author": "Matt Kruse <[email protected]> (http://MattKruse.com)",
"keywords": [
"amazon",
"echo",
"alexa",
"skills"
],
"scripts": {
"lint": "eslint index.js;",
"coverage": "istanbul cover _mocha -- -R spec",
"test": "mocha",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"repository": {
"type": "git",
"url": "https://github.com/matt-kruse/alexa-app.git"
},
"bugs": {
"url": "https://github.com/matt-kruse/alexa-app/issues"
},
"license": "MIT",
"dependencies": {
"alexa-utterances": "^0.2.0",
"bluebird": "^2.10.2",
"numbered": "^1.0.0"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"istanbul": "^0.4.3",
"mocha": "^2.3.4"
}
}