forked from alexa-js/alexa-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
56
57
58
59
60
61
{
"name": "alexa-app",
"version": "4.1.1",
"description": "A module to simplify creation of Alexa (Amazon Echo) apps (Skills) using Node.js",
"main": "index.js",
"types": "types",
"author": "Matt Kruse <[email protected]> (http://mattkruse.com)",
"engines": {
"node": ">=1"
},
"keywords": [
"amazon",
"echo",
"alexa",
"skills"
],
"scripts": {
"lint": "eslint index.js;",
"coverage": "istanbul cover _mocha -- -R spec",
"dtslint": "./node_modules/.bin/dtslint types",
"test": "./node_modules/.bin/mocha",
"test-with-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*.js",
"danger": "./node_modules/.bin/danger"
},
"repository": {
"type": "git",
"url": "https://github.com/alexa-js/alexa-app.git"
},
"bugs": {
"url": "https://github.com/alexa-js/alexa-app/issues"
},
"license": "MIT",
"dependencies": {
"alexa-utterances": "^0.2.0",
"alexa-verifier-middleware": "^0.2.1",
"bluebird": "^2.10.2",
"lodash.defaults": "^4.2.0",
"numbered": "^1.0.0",
"body-parser": "^1.15.2"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.3.0",
"chai-string": "^1.3.0",
"coveralls": "^2.11.9",
"danger": "0.6.10",
"ejs": "^2.5.5",
"eslint": "^2.9.0",
"esprima": "^3.1.3",
"express": "^4.14.0",
"istanbul": "^0.4.3",
"mocha": "^2.3.4",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1"
},
"optionalDependencies": {
"dtslint": "^0.1.2",
"typescript": "^2.4.2"
}
}