forked from Rowland/EG
39 lines
908 B
JSON
39 lines
908 B
JSON
{
|
|
"name": "karma-spec-reporter",
|
|
"version": "0.0.36",
|
|
"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": "^3.1.1",
|
|
"mocha": "^10.1.0",
|
|
"npm-run-all": "^4.0.2",
|
|
"nyc": "^15.1.0",
|
|
"sinon": "^14.0.2",
|
|
"sinon-chai": "^3.7.0"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
]
|
|
}
|