-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "alexa-skill-tv-guide",
"version": "1.0.0",
"description": "A [AWS Lambda](http://aws.amazon.com/lambda) function that is used to fetch TV show schedules for a skill for the Amazon Echo using the Alexa SDK.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"jest-cli": "^17.0.3"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionicblue/alexa-skill-tv-guide.git"
},
"keywords": [],
"author": {
"name": "Daniel Beet",
"email": "[email protected]",
"url": "https://github.com/daniel-beet"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ionicblue/alexa-skill-tv-guide/issues"
},
"homepage": "https://github.com/ionicblue/alexa-skill-tv-guide#readme",
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": ["src/**/*.js"],
"coverageDirectory": "dist/coverage",
"coverageReporters": ["json", "text", "html"]
}
}