forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "hls.js",
"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"
},
"bugs": {
"url": "https://github.com/video-dev/hls.js/issues"
},
"main": "./dist/hls.js",
"files": [
"dist/**/*",
"src/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "webpack --progress",
"build:ci": "webpack",
"build:debug": "webpack --progress --env.debug --env.demo",
"build:watch": "webpack --progress --env.debug --env.demo --watch",
"build:types": "tsc --emitDeclarationOnly",
"dev": "webpack-dev-server --progress --env.debug --env.demo --port 8000",
"docs": "esdoc",
"lint": "./scripts/lint.sh",
"lint:fix": "./scripts/lint.sh --fix",
"lint:quiet": "./scripts/lint.sh --quiet",
"pretest": "npm run lint",
"sanity-check": "npm run lint && npm run docs && npm run type-check && npm run build:types && npm run build && npm run test:unit",
"start": "npm run dev",
"test": "npm run test:unit && npm run test:func",
"test:unit": "karma start karma.conf.js",
"test:unit:watch": "karma start karma.conf.js --auto-watch --no-single-run",
"test:func": "BABEL_ENV=development mocha --require @babel/register tests/functional/auto/setup.js --timeout 40000 --exit",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/precommit.sh"
}
},
"dependencies": {
"eventemitter3": "^4.0.3",
"url-toolkit": "^2.1.6"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/helper-module-imports": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@itsjamie/esdoc-core": "^0.3.0",
"@itsjamie/esdoc-cli": "^0.3.0",
"@itsjamie/esdoc-ecmascript-proposal-plugin": "^0.3.0",
"@itsjamie/esdoc-standard-plugin": "^0.3.0",
"@itsjamie/esdoc-typescript-plugin": "^0.3.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^7.0.2",
"@types/sinon-chai": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-remove-console": "6.9.4",
"chai": "^4.2.0",
"chart.js": "^2.9.3",
"chartjs-plugin-zoom": "^0.7.5",
"chromedriver": "^83.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"http-server": "^0.12.1",
"husky": "^4.2.3",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.2",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^8.0.1",
"netlify-cli": "^2.36.0",
"selenium-webdriver": "^3.1.0",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"typescript": "^3.7.4",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.2.1",
"webworkify-webpack": "^2.1.5"
}
}