-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.04 KB
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
{
"name": "videojs-ima",
"version": "2.6.0",
"license": "Apache-2.0",
"main": "./dist/videojs.ima.js",
"module": "./dist/videojs.ima.es.js",
"author": {
"name": "Google Inc."
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"contBuild": "watch 'npm run rollup:max' src",
"predevServer": "echo \"Starting up server on localhost:8000.\"",
"devServer": "npm-run-all -p testServer contBuild",
"lint": "eslint \"src/**/*.js\"",
"rollup": "npm-run-all rollup:*",
"rollup:max": "rollup -c configs/rollup.config.mjs",
"rollup:es": "rollup -c configs/rollup.config.es.mjs",
"rollup:min": "rollup -c configs/rollup.config.min.mjs",
"pretest": "npm run rollup",
"start": "npm run devServer",
"test": "npm-run-all test:*",
"test:vjs6": "npm install video.js@6 videojs-contrib-ads@6.9.0 --no-save && npm-run-all -p -r testServer webdriver",
"test:vjs7": "npm install video.js@7 videojs-contrib-ads@6.9.0 --no-save && npm-run-all -p -r testServer webdriver",
"test:vjs8": "npm install video.js@8 videojs-contrib-ads@7 --no-save && npm-run-all -p -r testServer webdriver",
"testServer": "http-server --cors -p 8000 --silent",
"preversion": "node scripts/preversion.js && npm run lint && npm test",
"version": "node scripts/version.js",
"postversion": "node scripts/postversion.js",
"webdriver": "mocha test/webdriver/*.js --no-timeouts"
},
"repository": {
"type": "git",
"url": "https://github.com/googleads/videojs-ima"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist/",
"src/"
],
"peerDependencies": {
"video.js": "^5.19.2 || ^6 || ^7 || ^8"
},
"dependencies": {
"@hapi/cryptiles": "^5.1.0",
"can-autoplay": "^3.0.2",
"extend": ">=3.0.2",
"videojs-contrib-ads": "^6.9.0 || ^7"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@xmldom/xmldom": "^0.8.12",
"axios": "^1.15.0",
"child_process": "^1.0.2",
"chromedriver": "^147.0.2",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-videojs": "^3.0.2",
"ecstatic": "^4.1.4",
"eslint": "^8.8.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-jsdoc": "^3.15.1",
"geckodriver": "^4.3.0",
"http-server": "^14.1.1",
"ini": ">=1.3.7",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"rimraf": "^2.7.1",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"selenium-webdriver": "^4.41.0",
"shell-quote": "^1.8.1",
"video.js": "^8.11.6",
"watch": "^0.13.0"
},
"overrides": {
"basic-ftp": "^5.2.2",
"flattened": "^3.4.2",
"glob": "^12.0.0",
"handlebars": "^4.7.9",
"js-yaml": "^4.1.1",
"lodash": "^4.18.0",
"min-document": "^2.19.2",
"minimatch": "^9.0.7",
"picomatch": "^2.3.2",
"serialize-javascript": "^7.0.5"
},
"keywords": [
"videojs",
"videojs-plugin"
]
}