forked from alexa-samples/skill-sample-nodejs-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 821 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
{
"name": "dcc-your-first-amazon-alexa-skill",
"version": "1.0.0",
"description": "Your First Amazon Alexa Skill - DCC 2016.1",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikeChristianson/dcc-your-first-amazon-alexa-skill.git"
},
"keywords": [
"dcc",
"desertcodecamp",
"2016.1",
"helloworld",
"alexa",
"skill"
],
"author": "Mike Christianson",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MikeChristianson/dcc-your-first-amazon-alexa-skill/issues"
},
"homepage": "https://github.com/MikeChristianson/dcc-your-first-amazon-alexa-skill#readme",
"dependencies": {
"alexa-sdk": "^1.0.0",
"sync-request": "^3.0.1"
}
}