forked from basil79/ads-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
{
"name": "ads-manager",
"version": "1.1.9",
"description": "HTML5 Video Ads Manager based on @dailymotion/vast-client",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=12.22.1"
},
"main": "./dist/ads-manager.es.js",
"scripts": {
"contBuild": "watch \"npm run build:dev\" src",
"devServer": "npm-run-all -p testServer contBuild",
"start": "npm run devServer",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"prebuild": "rm -rf dist_old && mkdir dist_old && cp -a dist/. dist_old/",
"test": "mocha --require @babel/register --require global-jsdom/register && jest",
"jest": "jest",
"testServer": "http-server --cors -p 8081 --silent",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/basil79/ads-manager"
},
"keywords": [
"vast",
"vpaid",
"vmap",
"video-ads",
"ad-manager",
"ads-manager",
"vast-client-js",
"advertising",
"iab",
"video",
"instream",
"outstream"
],
"author": "Basil Goldman",
"license": "Apache-2.0",
"dependencies": {
"@dailymotion/vast-client": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/register": "^7.16.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.22.0",
"global-jsdom": "^8.4.0",
"http-server": "^14.0.0",
"jest": "^26.6.3",
"jsdom": "^19.0.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"should": "^13.2.3",
"sinon": "^2.4.1",
"string-replace-loader": "^2.2.0",
"watch": "^0.13.0",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
}
}