-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.07 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@video-js/ad-schedule-plugin",
"version": "2.2.1",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"license": "Apache-2.0",
"config": {
"build": {
"types": {
"outdir": "type",
"extension": ".d.ts"
},
"cjs": {
"outdir": "dist/cjs",
"extension": ".js"
},
"mjs": {
"outdir": "dist/mjs",
"extension": ".js"
},
"entries": {
".": "./src/index.js"
}
}
},
"peerDependencies": {
"video.js": "^5.19.2 || ^6 || ^7 || ^8"
},
"scripts": {
"build:cjs": "node ./esbuild.js -t commonjs",
"build:esm": "node ./esbuild.js -t es6",
"build:local": "npm run build && yalc push",
"bundle:demo": "esbuild ./src/demo.js --bundle --outfile=docs/demo.js --minify --sourcemap",
"build": "npm run build:cjs && npm run build:esm",
"changelog": "conventional-changelog --preset angular --config changelog.config.js",
"ci:changelog": "npm run changelog -- --same-file --infile CHANGELOG.md && npm run transform:changelog",
"github_release": "babel-node github-release.mjs",
"lint": "eslint ./src",
"release": "standard-version",
"serve": "serve -l 3000 docs",
"start": "concurrently \"npm run serve\" \"watch --interval=1 'npm run bundle:demo' ./src/\"",
"test": "npm run test:e2e",
"test:e2e": "wait-on http://localhost:3000/ & cypress run --browser chrome",
"test:open": "cypress open",
"transform:changelog": "node changelog.config.js --transform"
},
"dependencies": {
"@dailymotion/vast-client": "^5.0.0",
"videojs-contrib-ads": "^7.3.2"
},
"devDependencies": {
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"concurrently": "^8.0.1",
"conventional-changelog-cli": "^2.2.2",
"conventional-commits-parser": "^3.2.4",
"cypress": "^12.11.0",
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"regenerator-runtime": "^0.13.11",
"semver": "^7.5.0",
"serve": "^14.2.0",
"standard-version": "^9.5.0",
"video.js": "^8.3.0",
"wait-on": "^7.0.1",
"watch": "^0.13.0",
"yargs": "^17.7.2"
},
"description": "A VideoJS plugin for ad scheduling, open-source and available to schedule any advertisement at your desired moment.",
"repository": {
"type": "git",
"url": "git+https://github.com/aviral-zype/videojs-vast-plugins.git"
},
"keywords": [
"vast",
"videojs",
"plugin",
"samsung",
"tizen",
"webos",
"lgtv",
"vizio",
"viziotv",
"ads",
"vmap",
"videoads",
"xbox",
"html5",
"single-video-element",
"video",
"streaming",
"advertiesment",
"zeasn",
"vmap",
"videojs-plugin"
],
"author": "Aviral Gupta",
"bugs": {
"url": "https://github.com/aviral-zype/videojs-vast-plugins/issues"
},
"homepage": "https://github.com/aviral-zype/videojs-vast-plugins#readme",
"directories": {
"doc": "docs"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/video-js"
}
}