forked from jishi/node-sonos-http-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "sonos-http-api",
"version": "1.6.16",
"description": "A simple node app for controlling a Sonos system with basic HTTP requests",
"scripts": {
"start": "node server.js",
"lint": "eslint lib",
"debug": "DEBUG=1 SONOS_DEBUG=1 NODE_LOG_LEVEL=debug NODE_ENV=development node server.js",
"version": "echo $npm_package_version"
},
"author": "Jimmy Shimizu <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/kshartman/node-sonos-http-api.git"
},
"dependencies": {
"@brettz9/node-static": "^0.1.1",
"anesidora": "^1.2.0",
"aws-sdk": "^2.1483.0",
"basic-auth": "^2.0.1",
"fuse.js": "^6.6.2",
"html-entities": "^1.3.1",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"lodash": "^4.17.20",
"mime": "^3.0.0",
"music-metadata": "^1.1.0",
"request-promise": "^4.2.6",
"sonos-discovery": "git://github.com/kshartman/node-sonos-discovery",
"wav-file-info": "0.0.10",
"elevenlabs-node": "2.0.1"
},
"engines": {
"node": ">=4.0.0 <17.0.0",
"npm": ">=2.0.0 <10.0.0"
},
"main": "lib/sonos-http-api.js",
"license": "MIT",
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0"
}
}