UNPKG

browserify-istanbul

Version:

A browserify transform for the istanbul code coverage tool

49 lines (48 loc) 1.17 kB
{ "name": "browserify-istanbul", "version": "3.0.1", "description": "A browserify transform for the istanbul code coverage tool", "main": "index.js", "directories": { "test": "test" }, "scripts": { "lint": "eslint index.js test/*.js", "pretest": "npm run lint", "test": "nyc --reporter=text --reporter=lcov mocha" }, "pre-commit": [ "lint", "test" ], "repository": { "type": "git", "url": "git://github.com/devongovett/browserify-istanbul.git" }, "keywords": [ "browserify", "coverage", "istanbul" ], "author": "Devon Govett <devongovett@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/devongovett/browserify-istanbul/issues" }, "homepage": "https://github.com/devongovett/browserify-istanbul", "dependencies": { "istanbul-lib-instrument": "^1.8.0", "minimatch": "^3.0.4", "object-assign": "^4.1.1", "through": "^2.3.8" }, "devDependencies": { "browserify": "^14.4.0", "coveralls": "^3.0.0", "eslint": "^4.8.0", "eslint-plugin-mocha": "^4.11.0", "mocha": "^4.0.1", "nyc": "^11.2.1", "pre-commit": "^1.2.2" } }