-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
90 lines (90 loc) · 2.68 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "karma-mocha-reporter",
"description": "Karma reporter with mocha style logging.",
"version": "2.2.5",
"homepage": "http://www.litixsoft.de/index.php?lang=en#modules",
"author": "Litixsoft GmbH <[email protected]> (http://www.litixsoft.de)",
"maintainers": [
"Timo Liebetrau <[email protected]>",
"Marco Kannenberg <[email protected]>",
"Sven Bernstein <[email protected]>",
"Dominic Sachs <[email protected]>",
"Thomas Scheibe <[email protected]>",
"Mike Alig <[email protected]>",
"Joerg Raschke <[email protected]>",
"Andreas Krummsdorf <[email protected]>"
],
"contributors": [
"Artem Baguinski <[email protected]>",
"Brendan Nee <[email protected]>",
"Túbal Martín",
"M-Koch",
"Ryan P Kilby",
"christian-fei",
"Clay Anderson",
"Minh Son Nguyen",
"Adam Craven",
"Teddy Sterne"
],
"repository": {
"type": "git",
"url": "https://github.com/litixsoft/karma-mocha-reporter.git"
},
"bugs": {
"url": "https://github.com/litixsoft/karma-mocha-reporter/issues"
},
"keywords": [
"karma-plugin",
"karma-reporter",
"mocha",
"chai",
"diff",
"symbols"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/litixsoft/karma-mocha-reporter/blob/master/LICENSE"
}
],
"main": "index.js",
"scripts": {
"test": "grunt test",
"demo": "grunt demo --force"
},
"devDependencies": {
"chai": "^4",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-karma": "^2.0.0",
"grunt-shell": "^2.1.0",
"jasmine-core": "^2.8.0",
"karma": ">=0.13",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "*",
"karma-detect-browsers": "^2.2.5",
"karma-firefox-launcher": "*",
"karma-ie-launcher": "*",
"karma-jasmine": "*",
"karma-mocha": "*",
"karma-opera-launcher": "*",
"karma-phantomjs-launcher": "*",
"karma-safari-launcher": "*",
"karma-safaritechpreview-launcher": "*",
"load-grunt-tasks": "^3.5.2",
"mocha": "^4",
"phantomjs-prebuilt": "^2.1.15"
},
"dependencies": {
"chalk": "^2.1.0",
"log-symbols": "^2.1.0",
"strip-ansi": "^4.0.0"
},
"peerDependencies": {
"karma": ">=0.13"
}
}