| { |
| "author": "Matt Lewis", |
| "bugs": { |
| "url": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues" |
| }, |
| "commitlint": { |
| "extends": [ |
| "@commitlint/config-conventional" |
| ] |
| }, |
| "config": { |
| "commitizen": { |
| "path": "@commitlint/prompt" |
| } |
| }, |
| "dependencies": { |
| "istanbul-api": "^2.1.6", |
| "minimatch": "^3.0.4" |
| }, |
| "description": "A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.", |
| "devDependencies": { |
| "@commitlint/cli": "^8.1.0", |
| "@commitlint/config-conventional": "^8.1.0", |
| "@commitlint/prompt": "^8.1.0", |
| "@types/chai": "^4.1.7", |
| "@types/mocha": "^5.2.7", |
| "chai": "^4.2.0", |
| "codecov": "^3.5.0", |
| "commitizen": "^4.0.3", |
| "husky": "^1.3.1", |
| "istanbul-instrumenter-loader": "^3.0.1", |
| "karma": "^3.1.4", |
| "karma-mocha": "^1.3.0", |
| "karma-phantomjs-launcher": "^1.0.2", |
| "karma-sourcemap-loader": "^0.3.7", |
| "karma-webpack": "^4.0.2", |
| "mocha": "^5.2.0", |
| "nyc": "^14.1.1", |
| "prettier": "^1.18.2", |
| "pretty-quick": "^1.11.1", |
| "rimraf": "^2.6.3", |
| "standard-version": "^5.0.2", |
| "ts-loader": "^5.4.5", |
| "tslint": "^5.18.0", |
| "tslint-loader": "^3.6.0", |
| "typescript": "^3.5.3", |
| "webpack": "^4.36.1", |
| "xo": "^0.24.0" |
| }, |
| "files": [ |
| "src" |
| ], |
| "homepage": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme", |
| "husky": { |
| "hooks": { |
| "commit-msg": "commitlint -e", |
| "pre-commit": "pretty-quick --staged" |
| } |
| }, |
| "keywords": [ |
| "karma-plugin", |
| "karma-reporter", |
| "coverage", |
| "istanbul", |
| "istanbuljs" |
| ], |
| "license": "MIT", |
| "main": "src/reporter.js", |
| "name": "karma-coverage-istanbul-reporter", |
| "nyc": { |
| "reporter": [ |
| "html", |
| "text-summary", |
| "lcovonly" |
| ] |
| }, |
| "repository": { |
| "type": "git", |
| "url": "git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git" |
| }, |
| "scripts": { |
| "codecov": "cat coverage/lcov.info | codecov", |
| "commit": "git-cz", |
| "lint": "xo", |
| "postrelease": "npm publish", |
| "prerelease": "npm test", |
| "pretest": "npm run lint", |
| "release": "standard-version && git push --follow-tags origin master", |
| "start": "npm run test:watch", |
| "test": "nyc mocha", |
| "test:watch": "mocha --watch" |
| }, |
| "version": "2.1.0", |
| "xo": { |
| "envs": [ |
| "node", |
| "mocha" |
| ], |
| "ignore": [ |
| "{test,tests,spec,__tests__}/fixture{s,}/**" |
| ], |
| "rules": { |
| "indent": 0, |
| "object-curly-spacing": 0, |
| "operator-linebreak": 0, |
| "space-before-function-paren": 0 |
| }, |
| "space": true |
| } |
| } |