Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
karma-coverage-istanbul-reporter
/
Filename :
package.json
back
Copy
{ "name": "karma-coverage-istanbul-reporter", "version": "2.1.1", "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-api": "^2.1.6", "minimatch": "^3.0.4" }, "devDependencies": { "@commitlint/cli": "^8.2.0", "@commitlint/config-conventional": "^8.2.0", "@commitlint/prompt": "^8.2.0", "@types/chai": "^4.2.5", "@types/mocha": "^5.2.7", "chai": "^4.2.0", "codecov": "^3.6.1", "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.19.1", "pretty-quick": "^1.11.1", "rimraf": "^2.7.1", "standard-version": "^5.0.2", "ts-loader": "^5.4.5", "tslint": "^5.20.1", "tslint-loader": "^3.6.0", "typescript": "^3.7.2", "webpack": "^4.41.2", "xo": "^0.24.0" }, "nyc": { "reporter": [ "html", "text-summary", "lcovonly" ] }, "xo": { "space": 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" } } }