-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
38 lines (38 loc) · 908 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"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 <[email protected]>",
"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"
]
}