forked from dailymotion/vast-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "vast-client-fork",
"author": "Olivier Poitrey <[email protected]>",
"contributors": [
"Elia Maino <[email protected]>"
],
"version": "2.5.3",
"description": "JavaScript VAST Client",
"keywords": [
"vast",
"ad",
"advertising",
"iab",
"in-stream",
"video"
],
"repository": {
"type": "git",
"url": "https://github.com/dailymotion/vast-client-js"
},
"license": "MIT",
"engines": {
"node": ">=8.9.4"
},
"main": "dist/vast-client-node.min.js",
"module": "src/index.js",
"browser": {
"dist/vast-client.min.js": "dist/vast-client.min.js"
},
"types": "./index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"precommit": "eslint . --max-warnings 0 && pretty-quick --staged",
"test": "mocha --compilers js:babel-core/register --reporter spec test/*.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.15.0",
"husky": "^0.14.3",
"mocha": "^5.1.1",
"path": "^0.12.7",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"rollup": "^0.58.2",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"should": "^11.2.1",
"sinon": "^2.3.6"
},
"dependencies": {
"xmldom": "^0.1.27"
}
}