-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 923 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 923 Bytes
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
{
"name": "node-media-server",
"version": "2.0.0",
"description": "Node.js Media Server",
"license": "MIT",
"main": "index",
"author": {
"name": "Gennady Kozlenko",
"email": "gennadiy.kozlenko@gmail.com",
"url": "https://github.com/gkozlenko/"
},
"repository": {
"type": "git",
"url": "https://github.com/gkozlenko/node-media-server.git"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"video",
"media server",
"mp4",
"mov",
"flv",
"hls",
"m3u8",
"mpeg-ts"
],
"scripts": {
"prepare": "npm prune",
"start": "node ./index.js",
"lint": "eslint \"./**/*.js\""
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"globals": "^17.4.0"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.0",
"morgan": "^1.10.1",
"node-video-lib": "^2.5.0",
"winston": "^3.19.0"
}
}