-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "hls-segment-reader",
"version": "8.0.1",
"description": "Read segments from HLS streams using a Readable",
"main": "lib",
"scripts": {
"clean": "rm -f lib/*.{js,d.ts}",
"postpack": "npm run clean",
"prepack": "tsc",
"test": "lab -t 90",
"test-full": "npm test && npm run test-js",
"test-cov-html": "lab -c -r html -o coverage.html",
"test-js": "tsc && lab --transform '' --t 0 && npm run clean"
},
"keywords": [
"streaming",
"live",
"video",
"audio",
"m3u8"
],
"author": "Gil Pedersen <[email protected]>",
"license": "BSD-2-Clause",
"engines": {
"node": "^14.17.0"
},
"dependencies": {
"@hapi/hoek": "^10.0.0",
"hls-playlist-reader": "^2.0.0",
"m3u8parse": "^3.2.0"
},
"devDependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/code": "^9.0.1",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/hapi": "^20.0.0",
"@hapi/inert": "^6.0.1",
"@hapi/lab": "^25.0.1",
"@types/mime-types": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"joi": "^17.2.0",
"typescript": "^4.4.3",
"uristream": "^6.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanongil/node-hls-segment-reader.git"
},
"bugs": {
"url": "https://github.com/kanongil/node-hls-segment-reader/issues"
},
"homepage": "https://github.com/kanongil/node-hls-segment-reader"
}