-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "swagger-sonos-api",
"version": "0.9.0",
"description": "A swagger based node app for controlling a Sonos system with HTTP requests",
"scripts": {
"start": "node app.js",
"eslint": "eslint ."
},
"author": "Anthony Brown <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/antxxxx/sonos-swagger-api.git"
},
"dependencies": {
"bluebird": "^3.4.6",
"debug": "^2.3.3",
"express": "^4.14.0",
"feedparser-promised": "^1.1.1",
"fs-extra": "^1.0.0",
"js-yaml": "^3.7.0",
"lodash": "^4.17.4",
"log4js": "^1.0.1",
"nconf": "^0.8.4",
"nedb": "^1.8.0",
"request": "^2.79.0",
"request-promise": "^1.0.2",
"sonos-discovery": "https://github.com/jishi/node-sonos-discovery/archive/v1.4.1.tar.gz",
"spotify-web-api-node": "^2.3.6",
"swagger-express-mw": "^0.7.0",
"sway": "^1.0.0",
"xml-to-json-promise": "0.0.3"
},
"engines": {
"node": ">=4.0.0",
"npm": "^2.0.0"
},
"main": "app.js",
"license": "MIT",
"devDependencies": {
"eslint": "^3.11.1"
}
}