-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
83 lines (83 loc) · 3 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
{
"name": "karma-chrome-launcher",
"version": "3.1.0",
"description": "A Karma plugin. Launcher for Chrome and Chrome Canary.",
"main": "index.js",
"scripts": {
"lint": "standard",
"integration-test": "npx karma start examples/simple/karma.conf.js --single-run --browsers ChromeHeadless",
"unit-test": "npx mocha test/*",
"test": "npm run unit-test && npm run integration-test",
"release": "semantic-release",
"commitlint": "commitlint"
},
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-chrome-launcher.git"
},
"keywords": [
"karma-plugin",
"karma-launcher",
"chrome"
],
"author": "Vojta Jina <[email protected]>",
"dependencies": {
"which": "^1.2.1"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"chai": "^4.2.0",
"karma": "^6.4.1",
"karma-mocha": "1.x || ^0.2.0",
"mocha": "^5.2.0",
"semantic-release": "^17.0.1",
"sinon": "^7.1.1",
"standard": "^12.0.0"
},
"contributors": [
"Mark Ethan Trostler <[email protected]>",
"Rogério Vicente <[email protected]>",
"dignifiedquire <[email protected]>",
"Jonathan Ginsburg <[email protected]>",
"rogeriopvl <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"greenkeeperio-bot <[email protected]>",
"johnjbarton <[email protected]>",
"Mark Trostler <[email protected]>",
"Michał Gołębiowski-Owczarek <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"Andrey Taranov <[email protected]>",
"Aymeric Beaumet <[email protected]>",
"Filipe Guerra <[email protected]>",
"Alexander Fedyashov <[email protected]>",
"Darryl Pogue <[email protected]>",
"David <[email protected]>",
"Florian Richter <[email protected]>",
"Florian-R <[email protected]>",
"François SIMOND <[email protected]>",
"Hai Feng Kao <[email protected]>",
"J Rob Gant <[email protected]>",
"J. Abbott <[email protected]>",
"Jeff Cross <[email protected]>",
"Joe Doyle <[email protected]>",
"Julien Sanchez <[email protected]>",
"Marko Vuksanovic <[email protected]>",
"Nicholas Mitchell <[email protected]>",
"Parashuram N <[email protected]>",
"Stefan Bley <[email protected]>",
"Tatsuyuki Ishi <[email protected]>",
"Timo Tijhof <[email protected]>",
"Vincent Voyer <[email protected]>",
"aSemy <[email protected]>",
"brutalcrozt <[email protected]>",
"cexbrayat <[email protected]>",
"daniel rodriguez <[email protected]>",
"gkostov <[email protected]>",
"semantic-release-bot <[email protected]>"
]
}