forked from NOALBS/nginx-obs-automatic-low-bitrate-switching
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 979 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
30
31
{
"name": "nginx-obs-automatic-low-bitrate-switching",
"version": "1.9.0",
"description": "Simple app to automatically switch scenes based on the current bitrate on the nginx stats page.",
"main": "lib/app",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./lib/app",
"build": "babel src -d lib",
"dev": "nodemon --exec babel-node ./src/app.js"
},
"author": "Brian Spit",
"license": "MIT",
"dependencies": {
"fast-fuzzy": "^1.8.4",
"node-fetch": "^2.6.1",
"node-media-server": "^2.1.4",
"obs-websocket-js": "^1.2.0",
"signale": "^1.3.0",
"string-template": "^1.0.0",
"ws": "^6.1.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"nodemon": "^2.0.4"
}
}