-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "videojsx-vast-plugin",
"version": "1.0.0",
"description": "HTML5 video player with VAST support",
"main": "dist/player.js",
"vjsstandard": {
"ignore": [
"dist",
"test",
"config",
"/*.js",
"dev"
]
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"clean": "rm -rf dist",
"lint": "vjsstandard --errors",
"start": "webpack-dev-server --config webpack.dev.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"watch": "webpack --config webpack.watch.js",
"e2e": "node node_modules/.bin/jest --config jest-e2e.config.mjs"
},
"author": "Philip Watson",
"repository": {
"type": "git",
"url": "https://github.com/philipwatson/videojsx-vast-plugin"
},
"license": "MIT",
"dependencies": {
"@dailymotion/vast-client": "^4.0.1",
"video.js": "^8.6.1",
"videojs-contrib-ads": "^7.3.2",
"vpaid-html5-client": "github:philipwatson/VPAIDHTML5Client#4d78886004aaf474f5fd2864c6f6edfab4a7f15e"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"babel-loader": "^9.1.2",
"compression-webpack-plugin": "^10.0.0",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"express": "^4.18.1",
"global": "^4.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"mustache-express": "^1.3.2",
"portfinder": "^1.0.28",
"puppeteer": "^23.11.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"videojs-standard": "^9.0.1",
"webpack": "^5.97.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
}
}