-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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": "node-red-contrib-plex-ws",
"version": "0.2.4",
"description": "Nodes for connecting to Plex with real time notifications.",
"node-red": {
"nodes": {
"server": "nodes/server.js",
"notification": "nodes/notification.js",
"playing": "nodes/playing.js"
}
},
"repository": "git+https://github.com/scraton/node-red-contrib-plex-ws.git",
"keywords": [
"node-red",
"plex",
"ws",
"websocket"
],
"scripts": {
"dev": "npm run docker:up",
"docker:up": "npm run docker -- up --abort-on-container-exit --remove-orphans",
"docker:down": "npm run docker -- down",
"docker:restart": "npm run docker -- restart",
"docker:logs": "npm run docker -- logs -f && true",
"docker": "docker-compose -f docker-compose.yml",
"lint": "eslint --ignore-path .gitignore ."
},
"author": "Stephen Craton",
"license": "MIT",
"bugs": {
"url": "https://github.com/scraton/node-red-contrib-plex-ws/issues"
},
"homepage": "https://github.com/scraton/node-red-contrib-plex-ws#readme",
"dependencies": {
"plex-api": "^5.3.1",
"promise-retry": "^2.0.1",
"ws": "^7.4.1"
},
"devDependencies": {
"eslint": "^7.15.0"
}
}