-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "ima-wrapper",
"version": "1.0.8",
"description": "Wrapper for IMA SDK. IMA Wrapper is a convenience layer around Google Interactive Media Ads (IMA SDK for HTML5) which tries to make using IMA less cumbersome for common monetization use cases.",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=12.22.1"
},
"main": "./src/index.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 8087 --silent",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/basil79/ima-wrapper.git"
},
"keywords": [
"ima",
"ima-sdk",
"google-ads",
"ima-client-side",
"vast",
"vpaid",
"vmap",
"video-ads",
"video-player",
"vast-client-js",
"ads-manager",
"advertising",
"google",
"iab",
"video",
"instream-video-ads",
"outsream-video-ads",
"instream",
"outstream"
],
"author": "Basil Goldman",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/basil79/ima-wrapper/issues"
},
"homepage": "https://github.com/basil79/ima-wrapper#readme",
"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"
}
}