-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
58
59
60
61
{
"name": "airtunes2mqtt",
"version": "1.2.3",
"description": "This is a little daemon that can retrieve an audio stream via TCP socket or from a Alsa Loopback device and stream it to Airplay/Airtunes compatible receivers. Via Web UI or MQTT you can control the receivers volume and enable/disable the receivers.",
"main": "index.js",
"preferGlobal": true,
"bin": {
"airtunes2mqtt": "./index.js"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge; xo",
"lintfix": "xo --fix",
"build": "polymer build; rm -r www; mv build/default www; rm -r build"
},
"author": "Sebastian 'hobbyquaker' Raff <hobbyquaker@gmail.com> (https://github.com/hobbyquaker)",
"license": "MIT",
"dependencies": {
"airtunes": "github:hobbyquaker/node_airtunes",
"express": "^4.16.3",
"mqtt": "^2.18.3",
"socket.io": "^2.1.1",
"yalm": "^4.1.0",
"yargs": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/airtunes2mqtt"
},
"keywords": [
"airtunes",
"airplay",
"mqtt",
"smarthome",
"multi",
"room",
"audio",
"mopidy",
"stream",
"speaker",
"music"
],
"bugs": {
"url": "https://github.com/hobbyquaker/airtunes2mqtt/issues"
},
"homepage": "https://github.com/hobbyquaker/airtunes2mqtt",
"devDependencies": {
"@polymer/paper-slider": "^3.0.1",
"@polymer/paper-toggle-button": "^3.0.1",
"@polymer/polymer": "^3.1.0",
"@webcomponents/webcomponentsjs": "^2.2.0",
"camo-purge": "latest",
"polymer-cli": "^1.9.1",
"xo": "latest"
},
"xo": {
"space": 4
}
}