UNPKG

karma-brief-reporter

Version:

Reports test progress statistics and lists failures at the end of a Karma test run.

86 lines (85 loc) 2.05 kB
{ "name": "karma-brief-reporter", "description": "Reports test progress statistics and lists failures at the end of a Karma test run.", "version": "0.2.2", "homepage": "https://github.com/prantlf/karma-brief-reporter", "author": { "name": "Ferdinand Prantl", "email": "prantlf@gmail.com", "url": "http://prantl.tk" }, "repository": { "type": "git", "url": "https://github.com/prantlf/karma-brief-reporter.git" }, "bugs": { "url": "https://github.com/prantlf/karma-brief-reporter/issues" }, "license": "MIT", "licenses": [ { "type": "MIT", "url": "https://github.com/prantlf/karma-brief-reporter/blob/master/LICENSE" } ], "engines": { "node": ">= 8" }, "main": "index.js", "files": [ "index.js", "lib" ], "scripts": { "lint": "standard --verbose", "fix": "standard --verbose --fix", "check": "c8 mocha --report lcov -- test/*", "test": "npm run lint && npm run check" }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", [ "@semantic-release/github", { "failComment": false } ], "@semantic-release/git" ] }, "dependencies": { "cli-color": "2.0.2" }, "devDependencies": { "@semantic-release/changelog": "6.0.1", "@semantic-release/git": "10.0.1", "c8": "^7.11.2", "chai": "4.3.6", "coveralls": "3.1.1", "eslint-config-standard": "17.0.0", "eslint-plugin-import": "2.26.0", "eslint-plugin-node": "11.1.0", "eslint-plugin-promise": "6.0.0", "eslint-plugin-standard": "4.1.0", "mocha": "10.0.0", "mocha-lcov-reporter": "1.3.0", "rewire": "6.0.0", "sinon": "13.0.2", "sinon-chai": "3.7.0", "standard": "17.0.0" }, "peerDependencies": { "karma": ">=4.3" }, "keywords": [ "karma-plugin", "karma-reporter", "progress", "brief", "test" ] }