-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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": "hlsjs-handler",
"version": "0.0.0-development",
"description": "A package hlsjs-handler for hls video player",
"main": "dist/index.umd.js",
"files": ["dist", "README.md"],
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w --compilers js:babel-register",
"test:single": "mocha src/index.test.js --compilers js:babel-register",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/gaithoben/hlsjs-handler.git"
},
"keywords": ["hlsjs-handler", "counties", "constituencies", "wards"],
"author":
"Bernard Gaitho <[email protected]> (http://github.com/gaithoben)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaithoben/hlsjs-handler/issues"
},
"homepage": "https://github.com/gaithoben/hlsjs-handler#readme",
"dependencies": {
"ch-videojs-quality-picker": "1.1.0",
"hls.js": "0.8.9"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"ghooks": "2.0.2",
"json-loader": "0.5.7",
"mocha": "4.0.1",
"npm-run-all": "4.1.2",
"rimraf": "2.6.2",
"semantic-release": "^15.0.3",
"webpack": "3.10.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"babel": {
"presets": ["env", "stage-2"]
}
}