-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 910 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 910 Bytes
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-avy-skill",
"version": "1.1.0",
"description": "alexa skill for the utah avalanche center forecast",
"repository": {
"type": "git",
"url": "https://github.com/steveoh/alexa-utah-avy-skill"
},
"main": "index.js",
"scripts": {
"test": "eslint ./ && mocha",
"intents": "node src/skill",
"deploy": "dpl"
},
"author": "steve gourley <icsteveoh@gmail.com>",
"license": "MIT",
"dependencies": {
"alexa-app": "^4.2.0",
"aws-sdk": "^2.126.0",
"html-entities": "^1.2.1",
"jsdom": "^11.2.0",
"moment-timezone": "^0.5.13",
"request": "^2.83.0"
},
"devDependencies": {
"chai": "^4.0.2",
"dpl": "^3.8.0",
"eslint": "^4.0.0",
"express": "^4.15.3",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
},
"files_to_deploy": [
"package.json",
"project.json",
"index.js",
"src/"
],
"lambda_timeout": 10
}