forked from zentrick/iab-vast-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.34 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
92
93
94
95
96
{
"name": "iab-vast-loader",
"version": "2.0.0",
"description": "Loads and parses IAB VAST tags, resolving wrapped tags along the way.",
"main": "node.js",
"jsnext:main": "browser.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <tim.depauw@zentrick.com>"
],
"engines": {
"node": ">=8"
},
"license": "MIT",
"files": [
"lib/",
"node.js",
"browser.js"
],
"scripts": {
"test": "yarn run lint && yarn run cover",
"lint": "standard '*.js' '{lib,test}/**/*.js'",
"cover": "nyc mocha --require '@babel/register' --require '@babel/polyfill' 'test/lib/setup.js' 'test/unit/**/*.js'",
"ci": "yarn run lint && MOCHA_FILE=$CIRCLE_TEST_REPORTS/junit.xml yarn run cover --reporter mocha-junit-reporter && nyc report --reporter=text-lcov | coveralls",
"format": "prettier-standard '*.js' '{lib,test}/**/*.js'"
},
"repository": "zentrick/iab-vast-loader",
"bugs": "https://github.com/zentrick/iab-vast-loader/issues",
"dependencies": {
"es6-error": "^4.0.2",
"esm": "^3.0.84",
"eventemitter3": "^3.1.0",
"iab-vast-error": "^0.2.0",
"iab-vast-model": "^1.0.0",
"iab-vast-parser": "^1.0.2",
"node-fetch": "^2.2.0",
"unfetch": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"dirty-chai": "^2.0.1",
"express": "^4.16.2",
"fs-extra": "^7.0.0",
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^13.0.1",
"prettier-standard": "^8.0.1",
"sinon": "^6.3.4",
"sinon-chai": "^3.2.0",
"standard": "^10.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"expect",
"sinon",
"fetch"
]
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 90,
"include": [
"lib/**/*.js"
]
},
"lint-staged": {
"linters": {
"*.js": [
"prettier-standard",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}