-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hls-playlist-reader",
"version": "4.1.3",
"description": "Read playlist updates from a HLS stream",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"clean": "tsc -b src src/tsconfig.webonly.json test --clean; rm -Rf ./coverage",
"compile": "tsc -b src",
"mocha": "mocha -R dot --check-leaks 'test/*.test.js'",
"lint": "eslint .",
"prepare": "npm run compile -- --force",
"pretest": "concurrently 'npm run lint' 'tsc -b test' 'npm run test-webtypes'",
"test": "c8 --check-coverage -- npm run mocha",
"test-cov-html": "tsc -b test && c8 -r html mocha -R dot 'test/*.test.js'",
"test-webtypes": "tsc --project src/tsconfig.webonly.json --noEmit"
},
"keywords": [
"streaming",
"streams",
"whatwg",
"live",
"video",
"audio",
"m3u8"
],
"author": "Gil Pedersen <gpdev@gpost.dk>",
"license": "BSD-2-Clause",
"engines": {
"node": ">=18.12.0"
},
"exports": {
".": "./lib/index.js",
"./fetcher": {
"node": "./lib/fetcher.node.js",
"default": "./lib/fetcher.js"
},
"./helpers": {
"node": "./lib/helpers.node.js",
"default": "./lib/helpers.web.js"
},
"./helpers.web": "./lib/helpers.web.js",
"./playlist": "./lib/playlist.js"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"agentkeepalive": "^4.1.3",
"m3u8parse": "^4.0.0",
"uristream": "^7.0.2"
},
"devDependencies": {
"@hapi/code": "^9.0.1",
"@hapi/eslint-plugin": "^6.0.0",
"@hapi/hapi": "^21.2.1",
"@hapi/inert": "^7.0.0",
"@types/hapi__inert": "^5.2.5",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.19.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"c8": "^9.0.0",
"concurrently": "^8.2.1",
"eslint": "^8.18.0",
"joi": "^17.2.0",
"mocha": "^10.0.0",
"typescript": "~5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanongil/hls-playlist-reader.git"
},
"bugs": {
"url": "https://github.com/kanongil/hls-playlist-reader/issues"
},
"homepage": "https://github.com/kanongil/hls-playlist-reader"
}