-
-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
63 lines (63 loc) · 1.46 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
62
63
{
"name": "sonos",
"version": "0.0.0-development",
"description": "Node.js Sonos Interface",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && mocha test/sonos.test.js --exit --timeout 20000",
"env-run": "npm run $CMD",
"docs": "jsdox -t ./docs/generator/templates --output docs lib/ && jsdox -t ./docs/generator/templates --output docs/services lib/services && jsdox -t ./docs/generator/templates --output docs/events lib/events"
},
"repository": {
"type": "git",
"url": "https://github.com/bencevans/node-sonos.git"
},
"keywords": [
"sonos",
"music",
"control",
"play",
"interface"
],
"author": "Ben Evans <[email protected]> (https://bencevans.io/)",
"contributors": [
{
"name": "Marshall Rose",
"email": "[email protected]"
},
{
"name": "Stephen Wan",
"email": "[email protected]"
},
{
"name": "Stephan van Rooij",
"email": "[email protected]",
"url": "https://svrooij.nl/"
}
],
"files": [
"index.js",
"lib"
],
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"debug": "^4.3.1",
"ip": "^1.1.5",
"xml2js": "^0.5.0"
},
"bugs": {
"url": "http://github.com/bencevans/node-sonos/issues"
},
"devDependencies": {
"@bencevans/jsdox": "0.4.11",
"mocha": "10.2.0",
"nock": "10.0.6",
"pre-commit": "1.2.2",
"standard": "13.1.0"
},
"pre-commit": [
"lint"
]
}