-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.44 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
{
"name": "videojs-ima-player",
"version": "0.6.6",
"license": "MIT",
"main": "./dist/videojs.ima.js",
"author": {
"name": "Petr Schuchmann"
},
"engines": {
"node": ">=18.17.1"
},
"scripts": {
"lint": "eslint \"src/*.js\"",
"rollup": "npm-run-all rollup:*",
"rollup:max": "rollup -c config/rollup.config.mjs",
"rollup:min": "rollup -c config/rollup.config.min.mjs",
"test": "npm-run-all test:*",
"test:vjs6latest": "npm install [email protected] --no-save && npm run rollup:min && npm-run-all -p -r testServer webdriver",
"test:vjs7first": "npm install [email protected] --no-save && npm run rollup:min && npm-run-all -p -r testServer webdriver",
"test:vjs7latest": "npm install video.js@\"<8.0.0\" --no-save && npm run rollup:min && npm-run-all -p -r testServer webdriver",
"testServer": "http-server --cors -p 8000 --silent",
"webdriver": "mocha test/webdriver/*.mjs --no-timeouts"
},
"repository": {
"type": "git",
"url": "https://github.com/mysuf/videojs-ima-player"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist/",
"examples/"
],
"dependencies": {
"video.js": "^6.10.0 || ^7",
"videojs-contrib-ads": "^6.7.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-transform-arrow-functions": "^7.24.7",
"@babel/plugin-transform-class-properties": "^7.25.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.4",
"@babel/runtime-corejs3": "^7.25.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"autoprefixer": "^10.4.20",
"chromedriver": "^128.0.0",
"core-js": "^3.38.1",
"cssnano": "^7.0.5",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^46.10.1",
"geckodriver": "^4.4.3",
"http-server": "^14.1.1",
"mocha": "^10.7.3",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"rollup": "^4.21.0",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-postcss": "^4.0.2",
"selenium-webdriver": "^4.23.0"
},
"keywords": [
"videojs",
"videojs-plugin",
"videojs-ads"
]
}