-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.51 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
{
"name": "@clappr/ima-parser",
"version": "2.0.5",
"description": "A Lib to communicate with IMA and play ads.",
"keywords": [
"clappr",
"lib",
"ads",
"IMA",
"advertisement"
],
"homepage": "https://github.com/clappr/clappr-ima-parser",
"bugs": {
"url": "https://github.com/clappr/clappr-ima-parser/issues",
"email": "player-web@g.globo"
},
"license": "BSD-3-Clause",
"author": {
"name": "Globo (digital hub)",
"email": "player-web@g.globo"
},
"files": [
"/dist",
"/src"
],
"main": "./dist/clappr-ima-parser-node.js",
"exports": {
".": {
"browser": "./dist/clappr-ima-parser.js",
"module": "./dist/clappr-ima-parser.esm.js",
"default": "./dist/clappr-ima-parser-node.js"
}
},
"repository": {
"type": "git",
"url": "git@github.com:clappr/clappr-ima-parser.git"
},
"scripts": {
"bundle-check": "ANALYZE_BUNDLE=true rollup --config",
"build": "rollup --config",
"watch": "rollup --config --watch",
"release": "MINIMIZE=true rollup --config",
"prepublishOnly": "npm run release",
"start": "DEV=true rollup --config --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest --coverage --silent",
"test:coverage": "open coverage/lcov-report/index.html",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@clappr/core": "^0.4.19",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"babel-jest": "^27.4.2",
"coveralls": "^3.1.1",
"eslint": "^8.3.0",
"jest": "^27.4.2",
"jest-directory-named-resolver": "^0.3.0",
"rollup": "^2.60.2",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-named-directory": "^1.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2"
},
"peerDependencies": {
"@clappr/core": "^0.4.19"
},
"engines": {
"node": ">=12.0.0"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not ie <= 11"
],
"dependencies": {
"@dailymotion/vast-client": "git+https://github.com/arielfurtado/vast-client-js.git#1d1769e665758b1e87bdf58c6e0f619e330df480"
}
}