karma-spec-reporter
Version:
A Karma plugin. Report all spec-results to console (like mocha's spec reporter).
43 lines (42 loc) • 1.02 kB
JSON
{
"name": "karma-spec-reporter",
"version": "0.0.37",
"description": "A Karma plugin. Report all spec-results to console (like mocha's spec reporter).",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/tmcgee123/karma-spec-reporter.git"
},
"keywords": [
"karma-plugin",
"reporter"
],
"author": "Michael Lex <michael.lex@codecentric.de>",
"dependencies": {
"colors": "1.4.0"
},
"peerDependencies": {
"karma": ">=0.9"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"coveralls-next": "^6.0.2",
"mocha": "^12.0.0",
"npm-run-all": "^4.0.2",
"nyc": "^18.0.0",
"sinon": "^14.0.2",
"sinon-chai": "^3.7.0"
},
"files": [
"index.js"
],
"overrides": {
"js-yaml": "4.3.2",
"qs": "6.16.0"
}
}