-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "node-hls-server",
"version": "1.2.1",
"description": "Easy to use and configure HLS server, inspired by hls-server and node-media-server. The main reason is to develop a lighter and reduced version of node-media-server, only dedicated to HLS streamings. Hls-server does this but configuration and use its a bit more complex, my aim is to automatize it and simplify, getting the best of nms and hls-server.",
"main": "hlsServer.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedroacuma/node-hls-server.git"
},
"keywords": [
"hls",
"node",
"m3u8",
"streaming"
],
"author": "devfviak",
"license": "MIT",
"bugs": {
"url": "https://github.com/devfviak/node-hls-server/issues"
},
"homepage": "https://github.com/devfviak/node-hls-server#readme",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1"
},
"dependencies": {
"chalk": "^4.1.0",
"fluent-ffmpeg": "^2.1.2",
"mkdirp": "^1.0.4",
"send": "^0.17.1"
}
}