-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 2.42 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
97
{
"name": "iab-vast-parser",
"version": "1.2.1",
"description": "Parses IAB VAST tags into iab-vast-model objects.",
"main": "index.js",
"browser": "src/parse.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <[email protected]>",
"Christophe Bonello <[email protected]>"
],
"engines": {
"node": ">=8",
"yarn": "*"
},
"license": "MIT",
"files": [
"src/",
"lib/",
"index.js"
],
"scripts": {
"build": "rimraf lib && babel src -d lib",
"prepublish": "in-publish && yarn run build || not-in-publish",
"lint": "standard '{src,test,scripts}/**/*.js'",
"test:cover": "cross-env NODE_ENV=test nyc mocha --require babel-polyfill --require babel-register 'test/lib/setup.js' 'test/integration/**/*.js'",
"test": "yarn run lint && yarn run test:cover",
"ci": "yarn run lint && MOCHA_FILE=$CIRCLE_TEST_REPORTS/junit.xml yarn run test:cover --reporter mocha-junit-reporter && nyc report --reporter=text-lcov | coveralls"
},
"repository": "zentrick/iab-vast-parser",
"bugs": "https://github.com/zentrick/iab-vast-parser/issues",
"dependencies": {
"es6-error": "4.1.1",
"iab-vast-model": "^1.0.2"
},
"optionalDependencies": {
"xmldom": "^0.1.22"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.9",
"cross-env": "^5.1.3",
"fs-extra": "^5.0.0",
"globule": "^1.2.1",
"hard-rejection": "^2.1.0",
"in-publish": "^2.0.0",
"json-stable-stringify": "^1.0.1",
"mocha": "^5.0.2",
"mocha-junit-reporter": "^1.23.1",
"normalize-newline": "^3.0.0",
"nyc": "^11.4.1",
"replace-ext": "^1.0.0",
"rimraf": "^3.0.0",
"standard": "^14.3.1"
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"DOMParser"
]
},
"babel": {
"presets": [
"env"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"check-coverage": true,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 75,
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}