| { |
| "author": "Erik Barke", |
| "bugs": { |
| "url": "https://github.com/monounity/karma-coverage-istanbul-instrumenter/issues" |
| }, |
| "contributors": [ |
| "Louis-Dominique Dubeau (https://github.com/lddubeau)" |
| ], |
| "dependencies": { |
| "convert-source-map": "^1.6.0", |
| "istanbul-lib-instrument": "^3.0.0" |
| }, |
| "description": "Karma preprocessor for instrumenting javascript code for coverage", |
| "devDependencies": { |
| "@babel/core": "^7.2.2", |
| "@babel/preset-env": "^7.3.1", |
| "eslint": "^5.12.1", |
| "jasmine-core": "^3.3.0", |
| "karma": "^3.1.4", |
| "karma-chrome-launcher": "^2.2.0", |
| "karma-coverage-istanbul-reporter": "^2.0.4", |
| "karma-jasmine": "^2.0.1", |
| "rollup": "^1.1.2", |
| "rollup-plugin-babel": "^4.3.2", |
| "typescript": "^3.3.3333" |
| }, |
| "files": [ |
| "src/**" |
| ], |
| "homepage": "https://github.com/monounity/karma-coverage-istanbul-instrumenter", |
| "keywords": [ |
| "istanbul", |
| "karma", |
| "coverage", |
| "ES5", |
| "ES6", |
| "ES2015", |
| "babel", |
| "rollup", |
| "typescript" |
| ], |
| "license": "MIT", |
| "main": "src/index.js", |
| "name": "karma-coverage-istanbul-instrumenter", |
| "peerDependencies": { |
| "karma": "3 || 4" |
| }, |
| "repository": { |
| "type": "git", |
| "url": "git+https://github.com/monounity/karma-coverage-istanbul-instrumenter.git" |
| }, |
| "scripts": { |
| "clean": "rm -rf test/*/build", |
| "lint": "eslint ./src", |
| "setup": "npm link && npm link karma-coverage-istanbul-instrumenter", |
| "test": "npm run test:build && karma start test/es6-native/karma.conf.js && karma start test/rollup/karma.conf.js && karma start test/inline-sourcemap/karma.conf.js && karma start test/external-sourcemap/karma.conf.js", |
| "test:build": "npm run test:build:rollup && npm run test:build:inline-sourcemap && npm run test:build:external-sourcemap", |
| "test:build:external-sourcemap": "cd test/external-sourcemap && tsc", |
| "test:build:inline-sourcemap": "cd test/inline-sourcemap && tsc", |
| "test:build:rollup": "cd test/rollup && rollup --config rollup.config.js && cd ../.." |
| }, |
| "version": "1.0.1" |
| } |