-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 936 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
40
41
42
{
"name": "serverless-local-alexa-server",
"version": "0.2.0",
"engines": {
"node": ">=6.0"
},
"description": "Develop an Alexa skill in Serverless without deploying to AWS",
"author": "DieProduktMacher <www.dieproduktmacher.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DieProduktMacher/serverless-local-alexa-server"
},
"keywords": [
"serverless",
"serverless-plugin",
"alexa",
"development",
"dev",
"local",
"aws-lambda"
],
"main": "src/index.js",
"scripts": {
"test": "nyc mocha",
"lint": "standard"
},
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.0.0",
"mocha": "^3.4.2",
"node-fetch": "^1.7.1",
"nyc": "^10.3.2",
"serverless": "^1.14.0",
"sinon": "^2.3.2",
"standard": "^10.0.2"
}
}