forked from gkozlenko/node-media-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.03 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "node-media-server",
"version": "1.0.0",
"description": "Node.js Media Server",
"license": "MIT",
"main": "index",
"author": {
"name": "Gennady Kozlenko",
"email": "[email protected]",
"url": "https://github.com/gkozlenko/"
},
"repository": {
"type": "git",
"url": "https://github.com/gkozlenko/node-media-server.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"video",
"media server",
"mp4",
"mov",
"flv",
"hls",
"m3u8",
"mpeg-ts"
],
"scripts": {
"prepare": "npm prune",
"test": "mocha ./test/tests.js",
"start": "node ./index.js",
"lint": "eslint \"./**/*.js\""
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.0.1",
"mocha": "^6.1.4"
},
"dependencies": {
"bluebird": "^3.5.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"intel": "^1.2.0",
"lodash": "^4.17.14",
"logrotate-stream": "^0.2.5",
"md5": "^2.2.1",
"morgan": "^1.9.1",
"node-video-lib": "^2.1.10"
}
}