forked from lrholmes/spotify-connect-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 830 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
{
"name": "spotify-connect-ws",
"version": "0.1.1",
"description": "A WebSockets solution for Spotify's Connect API made using socket.io.",
"main": "lib",
"module": "lib/index.js",
"author": "Lawrence Holmes",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "yarn lint && babel -d ./lib ./src",
"watch": "babel -d ./lib ./src --watch"
},
"dependencies": {
"node-fetch": "^1.7.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}