UNPKG

iab-vast-parser

Version:

Parses IAB VAST tags into iab-vast-model objects.

98 lines (97 loc) 2.46 kB
{ "name": "iab-vast-parser", "version": "1.0.4", "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 <tim.depauw@zentrick.com>", "Christophe Bonello <christophe.bonello@zentrick.com>" ], "engines": { "node": ">=6", "yarn": "*" }, "license": "MIT", "files": [ "src/", "lib/", "index.js", "browser.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": { "iab-vast-model": "^1.0.1" }, "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.6.1", "babel-register": "^6.26.0", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "coveralls": "^3.0.0", "cross-env": "^5.1.3", "fs-extra": "^5.0.0", "globule": "^1.2.0", "hard-rejection": "^1.0.0", "in-publish": "^2.0.0", "json-stable-stringify": "^1.0.1", "mocha": "^5.0.2", "mocha-junit-reporter": "^1.17.0", "normalize-newline": "^3.0.0", "nyc": "^11.4.1", "replace-ext": "^1.0.0", "rimraf": "^2.6.2", "standard": "^11.0.0" }, "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 } }