-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "@clappr/hlsjs-playback",
"version": "1.3.0",
"description": "HLS Playback based on hls.js",
"main": "./dist/hlsjs-playback.js",
"module": "./dist/hlsjs-playback.esm.js",
"scripts": {
"start": "SERVE=true rollup --config --watch",
"start:with-reload": "SERVE=true RELOAD=true rollup --config --watch",
"build": "rollup --config",
"watch": "rollup --config --watch",
"bundle-check": "ANALYZE_BUNDLE=true rollup --config",
"release": "MINIMIZE=true rollup --config",
"test": "jest ./src --coverage --silent",
"test:debug": "node --inspect node_modules/.bin/jest ./src --runInBand",
"test:watch": "jest ./src --watch",
"lint": "eslint *.js ./src",
"lint:fix": "yarn lint -- --fix",
"prepublishOnly": "npm run release"
},
"files": [
"/dist",
"/src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:clappr/hlsjs-playback.git"
},
"author": "Globo.com",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/clappr/hlsjs-playback/issues"
},
"homepage": "https://github.com/clappr/hlsjs-playback",
"peerDependencies": {
"@clappr/core": "^0.4.27",
"hls.js": "^1.2.4"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@clappr/core": "^0.4.27",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"babel-jest": "^26.6.3",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.26.0",
"hls.js": "^1.2.4",
"jest": "^26.6.3",
"rollup": "^2.47.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}