forked from thorpelawrence/alexa-spotify-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
55
56
57
{
"name": "alexa-spotify-connect",
"version": "1.0.0",
"description": "Control Spotify Connect devices with Alexa",
"author": "Lawrence Thorpe",
"dependencies": {
"alexa-app": "^4.2.2",
"express": "^4.15.3",
"i18n": "^0.9.0",
"node-cache": "^5.0.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.5"
},
"license": "MIT",
"main": "connect.js",
"devDependencies": {
"chalk": "^4.0.0",
"coveralls": "^3.0.0",
"jest": "^22.1.4",
"nock": "^12.0.0",
"p-event": "^4.0.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/thorpelawrence/alexa-spotify-connect.git"
},
"alexa": {
"applicationId": "amzn1.ask.skill.33d79728-0f5a-44e7-ae22-ccf0b0c0e9e0"
},
"jest": {
"coverageReporters": [
"lcovonly"
],
"testURL": "http://localhost/"
},
"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"
}