forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.11 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": "hls.js",
"version": "0.8.7",
"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": "webpack --progress",
"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": "karma start karma.conf.js",
"testfunc": "cross-env BABEL_ENV=test mocha --compilers js:babel-register tests/functional/auto/hlsjs.js --timeout 40000",
"lint": "jshint src/",
"dev": "webpack-dev-server --progress --env.debug --port 8000"
},
"dependencies": {
"url-toolkit": "^2.0.1"
},
"devDependencies": {
"arraybuffer-equal": "^1.0.4",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.0",
"chromedriver": "^2.28.0",
"cross-env": "^5.0.2",
"deep-strict-equal": "^0.2.0",
"http-server": "^0.10.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jshint": "^2.9.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mocha": "^3.0.2",
"mversion": "^1.10.1",
"selenium-webdriver": "^3.1.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webworkify-webpack": "^2.0.0"
}
}