forked from thorpelawrence/alexa-spotify-connect
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "alexa-spotify-connect-living-room",
"version": "1.0.0",
"description": "Control Spotify Connect device Living Room",
"author": "Tim Carr",
"dependencies": {
"alexa-app": "^4.0.1",
"express": "^4.15.3",
"i18n": "^0.8.3",
"request": "^2.81.0",
"request-promise-native": "^1.0.5"
},
"license": "MIT",
"main": "connect.js",
"devDependencies": {
"coveralls": "^3.0.0",
"jest": "^22.1.4",
"nock": "^9.1.6",
"p-event": "^1.3.0"
},
"scripts": {
"start": "node connect.js",
"skill": "node skill/skill.js",
"utterances-i18n": "node skill/utterances-i18n",
"test": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xaphod/alexa-spotify-connect.git"
},
"alexa": {
"applicationId": "amzn1.ask.skill.cff2d0af-01a4-4e24-a05d-4e6b641abd48"
},
"jest": {
"coverageReporters": [
"lcovonly"
]
},
"keywords": [
"amazon",
"alexa",
"echo",
"spotify",
"connect",
"node",
"nodejs",
"js"
],
"bugs": {
"url": "https://github.com/thorpelawrence/alexa-spotify-connect/issues"
},
"homepage": "https://github.com/thorpelawrence/alexa-spotify-connect#readme"
}