-
Notifications
You must be signed in to change notification settings - Fork 213
/
package.json
72 lines (72 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "alexa-app",
"version": "5.0.0",
"description": "A module to simplify creation of Alexa (Amazon Echo) apps (Skills) using Node.js",
"main": "index.js",
"types": "types",
"author": "Matt Kruse <github@mattkruse.com> (http://mattkruse.com)",
"engines": {
"node": ">=10"
},
"keywords": [
"amazon",
"echo",
"alexa",
"skills"
],
"scripts": {
"lint": "eslint lib index.js",
"coverage": "istanbul cover mocha -- -R spec ./test/*.spec.js -r @babel/register",
"dtslint": "dtslint types && tsc -p test",
"test": "mocha \"./test/*.spec.js\" -r @babel/register",
"test-with-coverage": "istanbul cover mocha -- -R spec ./test/*.spec.js -r @babel/register",
"danger": "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": "^1.0.0",
"body-parser": "^1.15.2",
"lodash.defaults": "^4.2.0",
"numbered": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "1.5.0",
"coveralls": "^3.0.6",
"danger": "9.1.7",
"dtslint": "^0.9.1",
"ejs": "^2.5.5",
"eslint": "^6.1.0",
"esprima": "^4.0.1",
"express": "^4.14.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "6.2.0",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0",
"supertest": "^4.0.2",
"typescript": "^3.5.3"
},
"files": [
"lib",
"types/index.d.ts",
"types/alexa.d.ts"
]
}