-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.43 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
{
"name": "@arte/videojs-vast",
"version": "1.5.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",
"ci:changelog": "conventional-changelog --preset angular --same-file --infile CHANGELOG.md",
"lint": "eslint ./src",
"release": "standard-version",
"serve": "serve -l 3000 docs",
"start": "concurrently \"npm run serve\" \"watch --interval=1 'npm run bundle:demo' ./src/\" \"watch --interval=1 'npm run build:local' ./src/\"",
"test": "npm run test:e2e",
"test:e2e": "wait-on http://localhost:3000/ & cypress run --browser chrome",
"test:open": "cypress open"
},
"dependencies": {
"@dailymotion/vast-client": "^4.0.1",
"@dailymotion/vmap": "^3.3.1",
"videojs-contrib-ads": "^7.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"concurrently": "^8.0.1",
"conventional-changelog-cli": "^2.2.2",
"conventional-commits-parser": "^3.2.4",
"cypress": "^13.6.4",
"esbuild": "^0.17.18",
"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": "Open Source VAST plugin for VideoJS",
"repository": {
"type": "git",
"url": "git+https://github.com/ArteGEIE/videojs-vast.git"
},
"keywords": [
"vast",
"videojs-plugin",
"videojs",
"video.js",
"vmap"
],
"author": "ARTE",
"bugs": {
"url": "https://github.com/ArteGEIE/videojs-vast/issues"
},
"homepage": "https://github.com/ArteGEIE/videojs-vast#readme"
}