forked from karma-runner/grunt-karma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.79 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": "grunt-karma",
"version": "2.0.0",
"description": "grunt plugin for karma test runner",
"main": "tasks/grunt-karma.js",
"repository": {
"type": "git",
"url": "https://github.com/karma-runner/grunt-karma.git"
},
"keywords": [
"gruntplugin",
"karma",
"grunt",
"test",
"unit",
"runner",
"TDD"
],
"scripts": {
"test": "grunt test"
},
"author": "Dave Geddes",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"lodash": "^4.13.1"
},
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"expect.js": "^0.3.1",
"grunt": "^1.0.1",
"grunt-bump": "0.8.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-conventional-github-releaser": "^1.0.0",
"grunt-eslint": "^18.1.0",
"grunt-npm": "0.0.2",
"karma": "^1.0.0",
"karma-chrome-launcher": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "1.x || ^0.2.0",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.4.5"
},
"peerDependencies": {
"grunt": ">=0.4.x || ^1.0.0",
"karma": "^0.13.0 || ^1.0.0"
},
"contributors": [
"Dave Geddes <[email protected]>",
"Julian Motz <[email protected]>",
"Michał Gołębiowski <[email protected]>",
"Mark Ethan Trostler <[email protected]>",
"dsuckau <[email protected]>",
"Daniel Herman <[email protected]>",
"Eddie Monge <[email protected]>",
"James Ford <[email protected]>",
"Jonas Pommerening <[email protected]>",
"Julian <[email protected]>",
"Luis Almeida <[email protected]>",
"Matt Dean <[email protected]>",
"Max Riveiro <[email protected]>",
"Mike Dimmick <[email protected]>",
"Nicolas Breitwieser <[email protected]>",
"Olivier Amblet <[email protected]>",
"Pascal Precht <[email protected]>",
"Robin Hu <[email protected]>",
"Roman Morozov <[email protected]>",
"Sahat Yalkabov <[email protected]>",
"Valentin Hervieu <[email protected]>",
"Vlad Filippov <[email protected]>",
"Vojta Jina <[email protected]>",
"enigmak <[email protected]>",
"facboy <[email protected]>",
"jiverson <[email protected]>",
"joshrtay <[email protected]>",
"kolesnik <[email protected]>",
"Alexander Slansky <[email protected]>",
"m7r <[email protected]>",
"Alexey Kucherenko <[email protected]>",
"Chris Gross <[email protected]>",
"Chris Wren <[email protected]>",
"Christian Reed <[email protected]>",
"Christoph Kraemer <[email protected]>"
]
}