-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.26 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
52
53
54
{
"name": "mse-live-player",
"version": "0.0.1",
"description": "media source extension video player",
"main": "server.js",
"scripts": {
"test": "node compare.js",
"start": "node server.js",
"lint": "standard --verbose server.js ./routes/routes.js",
"lint:fix": "standard --fix server.js ./routes/routes.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinGodell/mse-live-player.git"
},
"keywords": [
"live",
"stream",
"fragmented",
"mp4",
"video",
"media",
"source",
"extensions",
"h264",
"ffmpeg",
"node.js",
"socket.io",
"express"
],
"author": "Kevin Godell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinGodell/mse-live-player/issues"
},
"homepage": "https://github.com/kevinGodell/mse-live-player#readme",
"dependencies": {},
"devDependencies": {
"express": "^4.17.1",
"ffmpeg-respawn": "^0.3.0",
"ffmpeg-static": "^2.7.0",
"mp4frag": "^0.2.0",
"pam-diff": "^1.0.0",
"pipe2jpeg": "^0.3.0",
"pipe2pam": "^0.6.2",
"socket.io": "^2.3.0",
"standard": "^14.3.1",
"ws": "^7.2.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}