-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "index",
"version": "1.0.0",
"description": "Amazon Echo Skill for Logitech/Squeezebox Media Server",
"license": "MIT",
"scripts": {
"test": "claudia test-lambda --event test/help.fixture.json"
},
"files": [
"index.js",
"config.js",
"utils.js",
"dispatcher.js",
"ssh-tunnel.js",
"info/artist.js",
"info/album.js",
"info/genre.js",
"info/title.js",
"info/playlist.js",
"info/info.js",
"intents/changevolume.js",
"intents/help.js",
"intents/intent-map.js",
"intents/intent.js",
"intents/name.js",
"intents/nexttrack.js",
"intents/pause.js",
"intents/play-playlist.js",
"intents/previoustrack.js",
"intents/randomize.js",
"intents/repeat.js",
"intents/resume.js",
"intents/select.js",
"intents/setvolume.js",
"intents/start.js",
"intents/startshuffle.js",
"intents/stop.js",
"intents/stopshuffle.js",
"intents/sync.js",
"intents/unsync.js",
"intents/whatsplaying.js",
"persist/persist.js"
],
"devDependencies": {
"claudia": "^2.9.0"
},
"dependencies": {
"aws-sdk": "^2.162.0",
"lordpengwin": "git+https://github.com/lordpengwin/squeezenode.git",
"lodash": "^4.17.4",
"tunnel-ssh": "^4.1.3"
}
}