-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.5 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
59
60
61
62
{
"name": "hls-stream",
"version": "1.1.2",
"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 && npm audit --audit-level high && 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,
"indent": 0,
"new-cap": 0,
"no-cond-assign": 0,
"no-multi-assign": 0,
"padding-line-between-statements": 0,
"import/no-dynamic-require": 0,
"unicorn/catch-error-name": 0,
"unicorn/filename-case": 0
}
},
"devDependencies": {
"ava": "^2.1.0",
"coveralls": "^3.0.4",
"minimist": "^1.2.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"sinon": "^7.3.2",
"xo": "^0.24.0"
},
"dependencies": {
"debug": "^4.1.1",
"hls-parser": "^0.4.0",
"node-fetch": "^2.6.0",
"through2-parallel": "^0.1.3"
}
}