forked from illuspas/Node-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1020 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@asurraa-lab/node-media-server",
"version": "1.0.3",
"description": "(Fork version to fix obs can't publish) A Node.js implementation of RTMP Server",
"bin": "bin/app.js",
"main": "src/node_media_server.js",
"scripts": {
"start": "node bin/app.js",
"dev": "nodemon bin/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asurraa-lab/Node-Media-Server.git"
},
"keywords": [
"rtmp",
"flv",
"server"
],
"author": "Chen Mingliang",
"license": "MIT",
"bugs": {
"url": "https://github.com/asurraa-lab/Node-Media-Server/issues"
},
"homepage": "https://github.com/asurraa-lab/Node-Media-Server#readme",
"dependencies": {
"basic-auth-connect": "^1.0.0",
"chalk": "^2.4.2",
"dateformat": "^3.0.3",
"express": "^4.16.4",
"lodash": ">=4.17.13",
"minimist": "^1.2.5",
"mkdirp": "1.0.3",
"ws": "^7.4.6"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}