This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
99 lines (99 loc) · 3.2 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
91
92
93
94
95
96
97
98
99
{
"name": "karma-mocha",
"version": "2.0.1",
"description": "A Karma plugin. Adapter for Mocha testing framework.",
"main": "lib/index.js",
"sharedKarmaFiles": {
"editorconfig": ".editorconfig",
"gitattributes": ".gitattributes"
},
"scripts": {
"test": "grunt test",
"test:lib": "mocha test/lib"
},
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-mocha.git"
},
"keywords": [
"karma-plugin",
"karma-adapter",
"mocha"
],
"author": "Vojta Jina <[email protected]>",
"dependencies": {
"minimist": "^1.2.3"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"grunt": "~1.0",
"grunt-auto-release": "~0.0.2",
"grunt-bump": "~0.8.0",
"grunt-conventional-changelog": "^6.0.1",
"grunt-eslint": "^18.0.0",
"grunt-karma": "2.x",
"grunt-npm": "~0.0.2",
"karma": "^1.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-sinon": "^1.0.3",
"load-grunt-tasks": "^3.2.0",
"mocha": "^3.0.0",
"mock-fs": "^4.10.1",
"shared-karma-files": "git://github.com/karma-runner/shared-karma-files.git#82ae8d02",
"sinon": "^1.17.2",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"semantic-release": "^15.14.0",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"contributors": [
"Maksim Ryzhikov <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"dignifiedquire <[email protected]>",
"Jordan Klassen <[email protected]>",
"Martin Hansen <[email protected]>",
"Mark Ethan Trostler <[email protected]>",
"Dave Geddes <[email protected]>",
"Aliaksei Shytkin <[email protected]>",
"Pawel Kozlowski <[email protected]>",
"Christopher Hiller <[email protected]>",
"Lukasz Bandzarewicz <[email protected]>",
"Jonathan Knapp <[email protected]>",
"Karolis Narkevicius <[email protected]>",
"Mark Trostler <[email protected]>",
"Peter Halliday <[email protected]>",
"Raphael Luba <[email protected]>",
"Sahat Yalkabov <[email protected]>",
"Tim Macfarlane <[email protected]>",
"Vova Bilonenko <[email protected]>",
"dej611 <[email protected]>",
"eiriksm <[email protected]>",
"patrick kettner <[email protected]>",
"Aymeric Beaumet <[email protected]>",
"Christian Schlensker <[email protected]>",
"Christian Schulze <[email protected]>",
"Ciro S. Costa <[email protected]>",
"Dan Thareja <[email protected]>",
"Darryl Pogue <[email protected]>",
"Darryl Pogue <[email protected]>",
"JONATHAN PARK <[email protected]>",
"James Morris <[email protected]>",
"Jason Divock <[email protected]>",
"Jeff Jagoda <[email protected]>"
]
}