-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "dynamic-video",
"version": "0.0.2",
"private": true,
"description": "A proof of concept for streaming video to a browser",
"scripts": {
"start": "node ./bin/www",
"test-devops": "jest --ci --reporters=jest-junit --reporters=default",
"test": "jest"
},
"keywords": [
"video",
"stream",
"poc",
"js"
],
"author": "Dennis Volkering",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"chalk": "^3.0.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.0",
"fluent-ffmpeg": "^2.1.2",
"flv.js": "^1.5.0",
"http-errors": "~1.6.3",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"memorystore": "^1.6.1",
"morgan": "~1.9.1",
"node-media-server": "^2.1.4",
"node-sass-middleware": "0.11.0",
"supertest": "^4.0.2",
"twig": "~0.10.3"
},
"devDependencies": {
"nodemon": "^1.19.4"
},
"jest-junit": {
"outputDirectory": "./tests",
"outputName": "test-result.xml"
}
}