forked from muxinc/hls-video-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "hls-video-element",
"version": "0.0.4",
"description": "Custom element (web component) for playing video using the HTTP Live Streaming (HLS) format. Uses HLS.js.",
"type": "module",
"main": "dist/hls-video-element.js",
"files": [
"./dist/*",
"README.md"
],
"scripts": {
"build": "rm -rf dist && rollup --config",
"test": "echo \"Error: no test specified\" && exit 1",
"publish-patch": "yarn run build && np patch --no-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muxinc/hls-video-element.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"HLS",
"video",
"player"
],
"author": "@muxinc",
"license": "MIT",
"dependencies": {
"custom-video-element": "^0.0.2",
"hls.js": "^0.13.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"np": "^6.2.0",
"rollup": "^2.2.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-terser": "^5.3.0"
}
}