-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 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
{
"name": "mpeg-dash-hls-nodejs-streamer",
"version": "1.0.0",
"description": "Liteweight DASH and HLS VOD Streamer using NodeJS.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev" : "nodemon app.js --ignore uploads/",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WINOFFRG/mpeg-dash-hls-nodejs-streamer.git"
},
"keywords": [
"HLS",
"MPEG",
"DASH",
"NodeJS",
"VOD",
"ExpressJS"
],
"author": "winoffrg",
"license": "ISC",
"bugs": {
"url": "https://github.com/WINOFFRG/mpeg-dash-hls-nodejs-streamer/issues"
},
"homepage": "https://github.com/WINOFFRG/mpeg-dash-hls-nodejs-streamer#readme",
"dependencies": {
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"firebase": "^9.6.1",
"firebase-admin": "^10.0.1",
"glob": "^7.2.0",
"multer": "^1.4.4",
"rimraf": "^3.0.2",
"uuid": "^8.3.2",
"winston": "^3.3.3"
}
}