forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.51 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
{
"name": "hls.js",
"version": "0.7.10",
"license": "Apache-2.0",
"description": "JavaScript HLS client using MediaSourceExtension",
"homepage": "https://github.com/video-dev/hls.js",
"authors": "Guillaume du Pontavice <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/video-dev/hls.js"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/video-dev/hls.js/issues"
},
"main": "./dist/hls.js",
"nyc": {
"reporter": [
"lcov"
],
"exclude": [
"tests"
]
},
"scripts": {
"build:dist": "webpack --progress --devtool source-map --output-filename hls.js",
"build:dist:min": "webpack --progress --optimize-minimize --output-filename hls.min.js",
"build:dist:light": "cross-env BUILD_VERSION=light webpack --progress --devtool source-map --output-filename hls.light.js",
"build:dist:light:min": "cross-env BUILD_VERSION=light webpack --progress --optimize-minimize --output-filename hls.light.min.js",
"build": "npm run build:dist && npm run build:dist:min && npm run build:dist:light && npm run build:dist:light:min && node scripts/foldersize.js dist",
"preparerelease": "npm run build && npm run test && git add dist/* && git commit -m 'update dist'",
"prerelease": "mversion prerelease && npm run preparerelease",
"patch": "mversion p && npm run preparerelease",
"minor": "mversion mi && npm run preparerelease",
"major": "mversion ma && npm run preparerelease",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-register --recursive tests/unit",
"testfunc": "mocha --compilers js:babel-register tests/functional/auto/hlsjs.js --timeout 80000",
"lint": "jshint src/",
"coverage": "nyc mocha --compilers js:babel-register --recursive tests/unit",
"dev": "webpack-dev-server --open --output-filename hls.js --devtool source-map"
},
"dependencies": {
"url-toolkit": "^2.0.1"
},
"devDependencies": {
"arraybuffer-equal": "^1.0.4",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-env": "^1.3.3",
"babel-register": "^6.18.0",
"chromedriver": "^2.27.1",
"cross-env": "^3.1.4",
"deep-strict-equal": "^0.2.0",
"nyc": "^11.0.2",
"http-server": "^0.9.0",
"jshint": "^2.9.4",
"mocha": "^3.0.2",
"mversion": "^1.10.1",
"selenium-webdriver": "^2.52.0",
"webpack": "^2.4.0",
"webpack-dev-server": "^2.2.0",
"webworkify-webpack": "^2.0.0"
}
}