-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
90 lines (90 loc) · 2.66 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
{
"name": "videojs-ima",
"version": "2.2.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.js",
"rollup:es": "rollup -c configs/rollup.config.es.js",
"rollup:min": "rollup -c configs/rollup.config.min.js",
"pretest": "npm run rollup",
"start": "npm run devServer",
"test": "npm-run-all test:*",
"test:vjs6": "npm install video.js@6 --no-save && npm-run-all -p -r testServer webdriver",
"test:vjs7": "npm install video.js@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"
},
"devDependencies": {
"axios": "^1.6.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"child_process": "^1.0.2",
"chromedriver": "^120.0.1",
"conventional-changelog-cli": "^2.2.2",
"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": "^9.2.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"protractor": "^7.0.0",
"rimraf": "^2.7.1",
"rollup": "^0.60.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-uglify": "^2.0.1",
"selenium-webdriver": "^4.16.0",
"shell-quote": "^1.8.1",
"uglify-es": "^3.3.9",
"video.js": "^7.17.0",
"watch": "^0.13.0",
"webdriver-manager": "^12.1.7",
"@xmldom/xmldom": "^0.8.10"
},
"keywords": [
"videojs",
"videojs-plugin"
]
}