forked from bencevans/node-sonos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 loc) · 998 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
42
43
44
45
46
47
48
49
{
"name": "sonos",
"version": "0.8.0",
"description": "Node.js Sonos Interface",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "mocha test/",
"env-run": "npm run $CMD"
},
"repository": {
"type": "git",
"url": "https://github.com/bencevans/node-sonos.git"
},
"keywords": [
"sonos",
"music",
"control",
"play",
"interface"
],
"author": "Ben Evans <ben@bensbit.co.uk> (http://bensbit.co.uk)",
"contributors": [
{
"name": "Marshall Rose",
"email": "mrose17@gmail.com"
},
{
"name": "Stephen Wan",
"email": "stephen@stephenwan.net"
}
],
"license": "MIT",
"dependencies": {
"debug": "~0.7.2",
"underscore": "~1.5.1",
"upnp-client": "0.0.1",
"xml2js": "~0.2.8",
"request": "~2.27.0",
"ip": "~0.3.0"
},
"bugs": {
"url": "http://github.com/bencevans/node-sonos/issues"
},
"devDependencies": {
"mocha": "^2.2.3",
"standard": "^3.3.2"
}
}