forked from muxinc/hls-video-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 952 Bytes
/
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
{
"name": "hls-video-element",
"version": "1.1.3",
"description": "Custom element (web component) for playing video using the HTTP Live Streaming (HLS) format. Uses HLS.js.",
"type": "module",
"main": "hls-video-element.js",
"types": "hls-video-element.d.ts",
"files": [
"hls-video-element.d.ts"
],
"scripts": {
"lint": "npx eslint *.js -c ./node_modules/wet-run/.eslintrc.json",
"test": "wet test --coverage",
"dev": "wet serve --cors --livereload"
},
"repository": "muxinc/hls-video-element",
"author": "@muxinc",
"license": "MIT",
"homepage": "https://github.com/muxinc/hls-video-element#readme",
"bugs": {
"url": "https://github.com/muxinc/hls-video-element/issues"
},
"dependencies": {
"custom-media-element": "^1.2.3",
"hls.js": "^1.5.4",
"media-tracks": "^0.3.0"
},
"devDependencies": {
"wet-run": "^1.0.3"
},
"keywords": [
"HLS",
"video",
"player"
]
}