-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 KB
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
{
"name": "dynamic-hls-proxy",
"version": "1.1.21",
"description": "Load a master HLS playlist (m3u8) and dynamically filter or re-sort it.",
"files": [
"dist/",
"README.md"
],
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"demo": "node dist/demo.js",
"chunklist-demo": "node dist/chunklist-demo.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonbyrne/dynamic-hls-proxy.git"
},
"keywords": [
"m3u8",
"hls",
"streaming",
"manifest",
"http live streaming"
],
"author": "Jason Byrne <jason.byrne@flosports.tv>",
"contributors": [
"Jason Byrne <jason.byrne@flosports.tv>",
"Nicholas Schirmer <nicholas.schirmer@flosports.tv>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonbyrne/dynamic-hls-proxy/issues"
},
"homepage": "https://github.com/jasonbyrne/dynamic-hls-proxy#readme",
"dependencies": {
"hls-parser": "^0.2.5"
},
"devDependencies": {
"@types/hls-parser": "^0.5.1",
"@types/node": "^10.14.17",
"node": "^11.9.0",
"prettier": "^2.0.5",
"typescript": "^3.3.3"
},
"engines": {
"node": ">=0.8.0"
}
}