UNPKG

istanbul-instrumenter-loader

Version:
80 lines (79 loc) 2.32 kB
{ "name": "istanbul-instrumenter-loader", "version": "3.0.1", "description": "Istanbul instrumenter loader for webpack", "author": "Kir Belevich (@deepsweet)", "main": "dist/cjs.js", "files": [ "dist" ], "dependencies": { "convert-source-map": "^1.5.0", "istanbul-lib-instrument": "^1.7.3", "loader-utils": "^1.1.0", "schema-utils": "^0.3.0" }, "engines": { "node": ">= 4.8 < 5.0.0 || >= 5.10" }, "license": "MIT", "scripts": { "start": "npm run build -- -w", "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files", "clean": "del-cli dist", "clean:dist": "del-cli dist", "lint": "eslint --cache src test", "lint-staged": "lint-staged", "prebuild": "npm run clean", "prepublish": "npm run build", "release": "standard-version", "security": "nsp check", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage", "travis:coverage": "npm run test:coverage -- --runInBand", "travis:lint": "npm run lint && npm run security", "travis:test": "npm run test -- --runInBand", "appveyor:test": "npm run test", "webpack-defaults": "webpack-defaults" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-jest": "^21.2.0", "babel-loader": "^7.1.2", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.6.1", "cross-env": "^5.1.0", "del-cli": "^1.1.0", "eslint": "^4.9.0", "eslint-config-webpack": "^1.2.5", "eslint-plugin-import": "^2.8.0", "jest": "^21.2.1", "lint-staged": "^4.3.0", "memory-fs": "^0.4.1", "nsp": "^2.8.1", "pre-commit": "^1.2.2", "standard-version": "^4.2.0", "webpack": "^3.8.1", "webpack-defaults": "^1.6.0" }, "homepage": "https://github.com/webpack-contrib/istanbul-instrumenter-loader", "repository": "https://github.com/webpack-contrib/istanbul-instrumenter-loader.git", "keywords": [ "webpack", "loader", "istanbul", "coverage" ], "pre-commit": "lint-staged", "lint-staged": { "*.js": [ "eslint --fix", "git add" ] }, "peerDependencies": { "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" } }