-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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": "iab-vast-error",
"version": "0.2.0",
"description": "Error class that describes VAST errors.",
"main": "index.js",
"jsnext:main": "src/index.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <tim.depauw@zentrick.com>"
],
"engines": {
"node": ">=4"
},
"license": "MIT",
"files": [
"src/",
"lib/",
"index.js"
],
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"prepublish": "in-publish && npm run build || not-in-publish",
"test": "gulp test"
},
"repository": "zentrick/iab-vast-error",
"bugs": "https://github.com/zentrick/iab-vast-error/issues",
"dependencies": {
"es6-error": "^4.0.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-coveralls": "^0.1.4",
"gulp-if": "^2.0.2",
"gulp-istanbul": "^1.1.2",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-standard": "^10.1.1",
"gulp-util": "^3.0.8",
"in-publish": "^2.0.0",
"isparta": "^4.0.0",
"mocha-junit-reporter": "^1.13.0",
"normalize-newline": "^3.0.0",
"run-sequence": "^2.1.0",
"standard": "^10.0.3",
"yargs": "^8.0.2"
},
"standard": {
"globals": [
"describe",
"it",
"expect"
]
}
}