forked from glomex/vast-ima-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "@streamrail/vast-ima-player",
"version": "1.0.2",
"description": "Convenience wrapper for advertising video/audio content with Google IMA",
"source": "src/index.ts",
"main": "dist/vast-ima-player.js",
"module": "dist/vast-ima-player.module.js",
"unpkg": "dist/vast-ima-player.umd.js",
"types": "dist/index.d.ts",
"mangle": {
"regex": "^_"
},
"scripts": {
"prepare": "npm run -s build",
"build": "npm-run-all --parallel build:*",
"build:bundle": "rollup -c test-page/rollup.config.js",
"build:test-page": "microbundle",
"start": "npm-run-all --parallel start:*",
"start:serve": "serve",
"start:bundle": "microbundle watch",
"start:test-page": "rollup -c test-page/rollup.config.js --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "karma start karma.conf.js --single-run"
},
"files": [
"dist",
"src",
"test-page"
],
"keywords": [
"ima",
"ima-sdk",
"ad",
"googleads",
"vast",
"vpaid",
"vmap",
"player",
"video-player"
],
"repository": "github:glomex/vast-ima-player",
"bugs": {
"url": "https://github.com/glomex/vast-ima-player/issues"
},
"author": "glomex GmbH",
"license": "Apache-2.0",
"devDependencies": {
"@alugha/ima": "^2.0.2",
"@ungap/custom-event": "^0.3.1",
"form-to-object": "^6.0.0",
"jasmine": "^3.6.4",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"microbundle": "^0.13.3",
"npm-run-all": "^4.1.5",
"serve": "^11.3.2",
"tslint": "^6.1.3",
"typescript": "^4.3.4"
},
"dependencies": {}
}