-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.14 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
{
"name": "iab-vast-model",
"version": "1.0.2",
"description": "Base classes for IAB VAST handling.",
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <[email protected]>",
"Christophe Bonello <[email protected]>"
],
"engines": {
"node": ">=6",
"yarn": "*"
},
"license": "MIT",
"files": [
"src/",
"lib/"
],
"scripts": {
"build": "rimraf lib && babel src -d lib",
"prepublish": "in-publish && yarn run build || not-in-publish",
"lint": "standard '{src,test}/**/*.js'",
"test:cover": "cross-env NODE_ENV=test nyc mocha --require babel-polyfill --require babel-register 'test/lib/setup.js' 'test/unit/**/*.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",
"doc": "documentation readme src/index.js -s API --sort-order alpha"
},
"repository": "zentrick/iab-vast-model",
"bugs": "https://github.com/zentrick/iab-vast-model/issues",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"documentation": "^6.1.0",
"in-publish": "^2.0.0",
"mocha": "^5.0.1",
"mocha-junit-reporter": "^1.17.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"standard": "^11.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"expect"
]
},
"babel": {
"presets": [
"env"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}