-
Notifications
You must be signed in to change notification settings - Fork 162
/
package.json
115 lines (115 loc) · 3.93 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "karma-jasmine",
"version": "4.0.1",
"description": "A Karma plugin - adapter for Jasmine testing framework.",
"main": "lib/index.js",
"files": [
"lib/*.js"
],
"scripts": {
"build": "grunt build",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint --fix \"**/*.js\"",
"commitlint": "commitlint",
"test": "npm run test:unit && npm run test:e2e && npm run test:integration",
"test:unit": "jasmine",
"test:e2e": "karma start karma.conf.js",
"test:integration": "bash tools/integration-tests.sh",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-jasmine.git"
},
"keywords": [
"karma-plugin",
"karma-adapter",
"jasmine"
],
"author": "Vojta Jina <[email protected]>",
"dependencies": {
"jasmine-core": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^4.1.0",
"grunt": "^1.5.2",
"husky": "^4.3.8",
"jasmine": "^4.1.0",
"karma": "^6.3.18",
"karma-firefox-launcher": "^2.1.2",
"semantic-release": "^19.0.2"
},
"peerDependencies": {
"karma": "^6.0.0"
},
"engines": {
"node": ">=12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"contributors": [
"Maksim Ryzhikov <[email protected]>",
"johnjbarton <[email protected]>",
"Jonathan Ginsburg <[email protected]>",
"Mark Ethan Trostler <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"XhmikosR <[email protected]>",
"olegskl <[email protected]>",
"semantic-release-bot <[email protected]>",
"dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"dignifiedquire <[email protected]>",
"Cornelius Schmale <[email protected]>",
"Arthur Thornton <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Patrick McGuckin <[email protected]>",
"Richard Park <[email protected]>",
"Fernando Costa <[email protected]>",
"Nico Jansen <[email protected]>",
"Aaron Hartwig <[email protected]>",
"Alesei N <[email protected]>",
"Barry Fitzgerald <[email protected]>",
"Dirk T <[email protected]>",
"Dmitriy Tychshenko <[email protected]>",
"Flavian Hautbois <[email protected]>",
"Georgii Dolzhykov <[email protected]>",
"Gregg Van Hove <[email protected]>",
"Jacob Trimble <[email protected]>",
"João Pereira <[email protected]>",
"Keen Yee Liau <[email protected]>",
"Limon Monte <[email protected]>",
"Luis Aleman <[email protected]>",
"Marek Vavrecan <[email protected]>",
"Matthew Hill <[email protected]>",
"Milan Lempera <[email protected]>",
"Niels Dequeker <[email protected]>",
"Robin Gloster <[email protected]>",
"Sahat Yalkabov <[email protected]>",
"Sampo Kivistö <[email protected]>",
"Schaaf, Martin <[email protected]>",
"Sergey Tatarintsev <[email protected]>",
"Sid Vishnoi <[email protected]>",
"Stefan Dragnev <[email protected]>",
"Tobias Speicher <[email protected]>",
"Todd Wolfson <[email protected]>",
"Vladimir Belov <[email protected]>",
"Yusuke Iinuma <[email protected]>",
"jiverson <[email protected]>",
"rpark <[email protected]>",
"strille <[email protected]>"
]
}