-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1005 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
{
"name": "streamer",
"version": "0.1.10",
"description": "An audio player sample skill.",
"main": "index.js",
"keywords": [
"alexa",
"skill",
"audio player"
],
"license": "See license in ../LICENSE.txt",
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "2.5.3"
},
"dependencies": {
"alexa-sdk": "^1.0.11",
"aws-sdk": "^2.7.13",
"bespoken-tools": "1.0.3",
"chalk": "^1.1.3",
"dotenv": "^2.0.0",
"follow-redirects": "^0.2.0",
"mockery": "^1.7.0",
"striptags": "^2.1.1",
"tmp": "0.0.28",
"underscore.string": "^3.3.4",
"uuid": "^3.1.0",
"xml2js": "0.4.15"
},
"repository": {
"type": "git",
"url": "https://github.com/bespoken/streamer"
},
"scripts": {
"coverage": "istanbul cover _mocha test/**/*Test.js",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info",
"postversion": "git push && git push --tags",
"test": "mocha test/*Test.js"
}
}