|
@@ -1,19 +1,40 @@
|
1
|
1
|
{
|
2
|
|
- "name": "gb28181-server",
|
|
2
|
+ "name": "gb28181-video-agent-gateway",
|
|
3
|
+ "version": "1.1.0",
|
|
4
|
+ "description": "A Node.js implementation of GB28181 Video Streaming Agent Server",
|
|
5
|
+ "main": "index.js",
|
3
|
6
|
"scripts": {
|
4
|
|
- "start": "nodemon ./vag.js",
|
5
|
|
- "pm2": "pm2 start vag.jg --name gb28181",
|
6
|
|
- "pkg": "pkg . -t node14-linux-x64 -o sip-server"
|
7
|
|
- },
|
8
|
|
- "bin": "./vag.js",
|
9
|
|
- "pkg": {
|
10
|
|
-
|
|
7
|
+ "start": "node vag.js"
|
11
|
8
|
},
|
|
9
|
+ "keywords": [
|
|
10
|
+ "gb28181",
|
|
11
|
+ "rtp",
|
|
12
|
+ "sip",
|
|
13
|
+ "PS"
|
|
14
|
+ ],
|
|
15
|
+ "author": "ntv",
|
|
16
|
+ "license": "MIT",
|
12
|
17
|
"dependencies": {
|
13
|
|
-
|
|
18
|
+ "basic-auth-connect": "^1.0.0",
|
|
19
|
+ "body-parser": "^1.19.0",
|
|
20
|
+ "chalk": "^4.1.0",
|
|
21
|
+ "dateformat": "^3.0.3",
|
|
22
|
+ "express": "^4.17.1",
|
|
23
|
+ "iconv-lite": "^0.6.0",
|
|
24
|
+ "rtp-rtcp": "0.0.2",
|
|
25
|
+ "ws": "^7.3.0",
|
|
26
|
+ "xml2js": "^0.4.23",
|
|
27
|
+ "uglify": "^0.1.5"
|
14
|
28
|
},
|
15
|
29
|
"devDependencies": {
|
16
|
|
- "nodemon": "^14.15.4",
|
17
|
|
- "pkg": "^4.4.9"
|
|
30
|
+ "ejs": "*",
|
|
31
|
+ "express": "3.2.2",
|
|
32
|
+ "grunt": "^0.4.5",
|
|
33
|
+ "grunt-contrib-jshint": "~0.10.0",
|
|
34
|
+ "grunt-contrib-nodeunit": "~0.4.1",
|
|
35
|
+ "grunt-contrib-uglify-es": "^3.3.0"
|
|
36
|
+ },
|
|
37
|
+ "engines": {
|
|
38
|
+ "node": ">=8.0.0"
|
18
|
39
|
}
|
19
|
|
-}
|
|
40
|
+}
|