forked from cloudinary/cloudinary-video-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.55 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
{
"name": "cloudinary-video-player",
"version": "1.9.3-edge.0",
"description": "Cloudinary Video Player",
"bundlewatch": {
"files": [
{
"path": "./dist/cld-video-player.min.js",
"maxSize": "472.3kb"
},
{
"path": "./dist/cld-video-player.light.min.js",
"maxSize": "162kb"
}
]
},
"scripts": {
"prepare": "yarn run snyk-protect && shx cp env.example.js env.js",
"start": "webpack-dev-server --config webpack/dev.config.js",
"start:light": "WEBPACK_BUILD_LIGHT=1 webpack-dev-server --config webpack/dev.config.js",
"clean": "rm -rf dist",
"build-dev": "webpack --config webpack/es5.config.js --progress --color --mode=development",
"build": "webpack --config webpack/es5.config.js --progress --color",
"postbuild-all": "bundlewatch",
"build-light-dev": "WEBPACK_BUILD_LIGHT=1 webpack --config webpack/es5.config.js --progress --color --mode=development",
"build-light": "WEBPACK_BUILD_LIGHT=1 webpack --config webpack/es5.config.js --progress --color",
"analyze": "webpack --config webpack/analyzer.config.js --json | webpack-bundle-analyzer",
"analyze:light": "WEBPACK_BUILD_LIGHT=1 webpack --config webpack/analyzer.config.js",
"build-all": "npm run clean && npm run build && npm run build-dev && npm run build-light && npm run build-light-dev",
"precommit": "eslint src",
"predeploy": "deploy=true npm run build-all",
"deploy": "deploy=true node webpack/deploy.js",
"postdeploy": "git push origin master --follow-tags",
"dry:deploy": "node webpack/deploy.js dry",
"test": "jest --no-cache --detectOpenHandles",
"test:unit": "UNIT=TRUE jest --no-cache --env jsdom --testPathPattern='test/unit/(.*)+test.js'",
"snyk-protect": "snyk protect"
},
"author": "Cloudinary",
"license": "MIT",
"main": "./dist/cld-video-player.js",
"style": "./dist/cld-video-player.min.css",
"dependencies": {
"@cloudinary/url-gen": "^1.8.6",
"dashjs": "^4.2.1",
"video.js": "^7.17.0",
"videojs-contrib-ads": "^6.9.0",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-ima": "^1.9.1",
"videojs-per-source-behaviors": "^2.1.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@types/video.js": "^7.3.23",
"@webpack-cli/serve": "^1.6.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.2",
"bundlewatch": "^0.3.2",
"copy-webpack-plugin": "4",
"css-loader": "^5.2.6",
"css.escape": "^1.5.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-jest": "^21.27.2",
"expose-loader": "^0.7.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-puppeteer": "^4.4.0",
"jest-webpack": "^0.5.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^1.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"puppeteer": "^5.5.0",
"puppeteer-request-spy": "^1.4.0",
"sass": "^1.35.1",
"sass-loader": "10.2.0",
"shx": "^0.3.3",
"snyk": "^1.653.0",
"source-map-loader": "1.1.3",
"terser-webpack-plugin": "^4.2.3",
"uglify-js": "^3.13.10",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.0.0",
"webpack-conditional-loader": "^1.0.12",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0",
"webworkify-webpack2": "^1.1.9"
},
"snyk": true
}