-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.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": "custom-video-player",
"version": "1.0.0",
"description": "HTML5 video player",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode=production",
"build-obf": "webpack --mode=production --env obf",
"build-cdn": "webpack --mode=production --env dist=current",
"build-dev": "webpack",
"build-debug": "webpack --env debug",
"lint": "eslint src --ext .js",
"lint-fix": "eslint src --ext .js --fix",
"serve": "webpack serve --open",
"test": "npm run build-dev && webpack serve --open --no-client-overlay --mode=production",
"watch": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Joel2B/custom-video-player.git"
},
"author": "JoelB",
"license": "MIT",
"bugs": {
"url": "https://github.com/Joel2B/custom-video-player/issues"
},
"homepage": "https://github.com/Joel2B/Custom-Video-Player",
"browserslist": [
"> 0.25%",
"not dead",
"IE 11"
],
"dependencies": {
"custom-event-polyfill": "^1.0.7",
"element-remove": "^1.0.4",
"es6-object-assign": "^1.1.0",
"es6-promise": "^4.2.8",
"url-polyfill": "^1.1.12",
"videojs-vtt.js": "~0.15.4"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"babel-loader": "^9.1.0",
"cheerio": "1.0.0-rc.12",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"eslint": "^8.28.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.0",
"javascript-obfuscator": "^4.0.0",
"prettier-eslint": "^15.0.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"scriptjs": "^2.5.9",
"semver": "^7.3.8",
"style-loader": "^3.3.1",
"svg-url-loader": "^8.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-obfuscator": "^3.5.1"
}
}