forked from karma-runner/karma-jasmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.29 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
100
101
102
{
"name": "karma-jasmine",
"version": "4.0.1",
"description": "A Karma plugin - adapter for Jasmine testing framework.",
"main": "lib/index.js",
"files": [
"lib/*.js"
],
"scripts": {
"test": "jasmine && grunt"
},
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-jasmine.git"
},
"keywords": [
"karma-plugin",
"karma-adapter",
"jasmine"
],
"author": "Vojta Jina <vojta.jina@gmail.com>",
"dependencies": {
"jasmine-core": "^3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"conventional-changelog": "^3.1.21",
"conventional-changelog-core": "^4.1.7",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"grunt": "^1.2.1",
"grunt-bump": "^0.8.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-conventional-github-releaser": "^1.0.0",
"grunt-eslint": "^23.0.0",
"grunt-karma": "^4.0.0",
"grunt-npm": "0.0.2",
"husky": "^4.2.5",
"jasmine": "^3.6.3",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"load-grunt-tasks": "^5.1.0"
},
"peerDependencies": {
"karma": "*"
},
"engines": {
"node": ">= 10"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"contributors": [
"Maksim Ryzhikov <rv.maksim@gmail.com>",
"johnjbarton <johnjbarton@johnjbarton.com>",
"Mark Ethan Trostler <mark@zzo.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"olegskl <sklyanchuk@gmail.com>",
"dignifiedquire <dignifiedquire@gmail.com>",
"Cornelius Schmale <github@cschmale.de>",
"Arthur Thornton <arthur@thestorefront.com>",
"Friedel Ziegelmayer <friedel.ziegelmayer@gmail.com>",
"Patrick McGuckin <patrick@gskinner.com>",
"Richard Park <objectiv@gmail.com>",
"XhmikosR <xhmikosr@gmail.com>",
"Fernando Costa <fadc80@gmail.com>",
"Nico Jansen <jansennico@gmail.com>",
"Niels Dequeker <niels.dequeker@gmail.com>",
"Robin Gloster <robin@loc-com.de>",
"Sahat Yalkabov <sakhat@gmail.com>",
"Schaaf, Martin <703355+mschaaf@users.noreply.github.com>",
"Sergey Tatarintsev <sevinf@yandex-team.ru>",
"Stefan Dragnev <dragnev@telerik.com>",
"Vladimir Belov <Vladimir.Belov@hotmail.com>",
"Yusuke Iinuma <yinm@users.noreply.github.com>",
"jiverson <jiverson222@gmail.com>",
"rpark <objectiv@gmail.com>",
"Aaron Hartwig <aaron.hartwig@whyhigh.com>",
"strille <strille@users.noreply.github.com>",
"Alesei N <github.com@bzik.net>",
"Barry Fitzgerald <barfitzgerald@gmail.com>",
"Dirk T <DirkToewe@GoogleMail.com>",
"Dmitriy Tychshenko <dtychshenko@users.noreply.github.com>",
"Georgii Dolzhykov <thorn.mailbox@gmail.com>",
"Gregg Van Hove <gvanhove@pivotal.io>",
"Jacob Trimble <modmaker@google.com>",
"João Pereira <joaopapereira@gmail.com>",
"Keen Yee Liau <kyliau@google.com>",
"Luis Aleman <Lalem001@users.noreply.github.com>",
"Marek Vavrecan <vavrecan@gmail.com>",
"Matthew Hill <Matthew.Hill4@bskyb.com>",
"Milan Lempera <milanlempera@gmail.com>"
]
}