-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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": "m3u8parse",
"version": "5.0.0",
"description": "Structural parsing of Apple HTTP Live Streaming .m3u8 format",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"clean": "tsc -b src test --clean; rm -Rf ./coverage",
"postpack": "npm run clean",
"prepack": "npm run clean && tsc -b src --force",
"test": "tsc -b test && c8 --check-coverage lab",
"test-cov-html": "tsc -b test && c8 -r html lab"
},
"keywords": [
"hls",
"playlist",
"video",
"audio"
],
"author": "Gil Pedersen <[email protected]>",
"license": "BSD-2-Clause",
"engines": {
"node": ">=18.12.0"
},
"exports": {
".": {
"node": {
"types": "./lib/index.node.d.ts",
"default": "./lib/index.node.js"
},
"default": "./lib/index.js"
},
"./types/attrs": {
"types": "./lib/attr-types.d.ts"
},
"./attrlist": "./lib/attrlist.js",
"./playlist": "./lib/playlist.js"
},
"devDependencies": {
"@hapi/code": "^9.0.1",
"@hapi/eslint-plugin": "^7.0.0",
"@hapi/lab": "^26.0.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"c8": "^10.1.3",
"m3u8parse": "file:.",
"typescript": "~5.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/kanongil/m3u8parse.js.git"
},
"bugs": {
"url": "https://github.com/kanongil/m3u8parse.js/issues"
}
}