Icard/angular-clarity-master(work.../node_modules/karma-coverage-istanbul-rep.../package.json

122 lines
2.9 KiB
JSON

{
"name": "karma-coverage-istanbul-reporter",
"version": "3.0.3",
"description": "A karma reporter that uses the latest istanbul 1.x APIs (with full sourcemap support) to report coverage.",
"funding": {
"url": "https://github.com/sponsors/mattlewis92"
},
"main": "src/reporter.js",
"files": [
"src"
],
"scripts": {
"start": "npm run test:watch",
"lint": "xo",
"pretest": "npm run lint",
"test": "nyc mocha",
"test:watch": "mocha --watch",
"codecov": "cat coverage/lcov.info | codecov",
"commit": "git-cz",
"prerelease": "npm test",
"release": "standard-version && git push --follow-tags origin master",
"postrelease": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/karma-coverage-istanbul-reporter.git"
},
"keywords": [
"karma-plugin",
"karma-reporter",
"coverage",
"istanbul",
"istanbuljs"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter/issues"
},
"homepage": "https://github.com/mattlewis92/karma-coverage-istanbul-reporter#readme",
"dependencies": {
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^3.0.6",
"istanbul-reports": "^3.0.2",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/prompt": "^8.3.5",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"commitizen": "^4.0.5",
"coverage-istanbul-loader": "^3.0.3",
"husky": "^4.2.5",
"karma": "^5.0.4",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"standard-version": "^7.1.0",
"ts-loader": "^7.0.2",
"tslint": "^6.1.2",
"tslint-loader": "^3.6.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"xo": "^0.30.0"
},
"nyc": {
"reporter": [
"html",
"text-summary",
"lcovonly"
]
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node",
"mocha"
],
"rules": {
"space-before-function-paren": 0,
"object-curly-spacing": 0,
"operator-linebreak": 0,
"indent": 0
},
"ignore": [
"{test,tests,spec,__tests__}/fixture{s,}/**"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "pretty-quick --staged"
}
},
"mocha": {
"timeout": 10000
}
}