forked from kuu/node-hls-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.38 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
55
56
57
58
{
"name": "node-hls-stream",
"version": "0.0.1",
"description": "A readable stream that can be used for extracting a particular variant/rendition from a live/VOD HLS stream",
"main": "./index.js",
"scripts": {
"lint": "xo",
"e2e": "node ./e2e",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && nsp check && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuu/node-hls-stream.git"
},
"keywords": [
"video",
"audio",
"HLS",
"stream"
],
"author": "Kuu Miyazaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuu/node-hls-stream/issues"
},
"homepage": "https://github.com/kuu/node-hls-stream#readme",
"engines": {
"node": ">=7.0.0"
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"capitalized-comments": 0,
"dot-notation": 0,
"new-cap": 0,
"no-cond-assign": 0,
"no-multi-assign": 0,
"import/no-dynamic-require": 0
}
},
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.13.0",
"minimist": "^1.2.0",
"nsp": "^2.6.3",
"nyc": "^10.2.0",
"proxyquire": "^1.7.11",
"sinon": "^2.1.0",
"xo": "^0.18.1"
},
"dependencies": {
"@kuu/parallel-fetch": "https://github.com/kuu/parallel-fetch.git",
"debug": "^2.6.3",
"hls-parser": "^0.1.4"
}
}