forked from karma-runner/karma-sauce-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.04 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
{
"name": "karma-sauce-launcher",
"version": "3.0.1",
"description": "A Karma plugin. Launch any browser on SauceLabs!",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p src",
"run-example": "yarn build && yarn copy-dist-to-modules && yarn run-example-karma",
"copy-dist-to-modules": "rm -rf node_modules/karma-sauce-launcher && mv dist/ node_modules/karma-sauce-launcher",
"run-example-karma": "yarn karma start examples/karma.conf-ci.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/karma-runner/karma-sauce-launcher.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"engines": {
"node": ">= 10.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"karma-plugin",
"karma-launcher",
"sauce",
"labs",
"saucelabs"
],
"author": "Vojta Jina <[email protected]>",
"dependencies": {
"global-agent": "^2.1.8",
"saucelabs": "^4.3.0",
"webdriverio": "^6.1.9"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/changelog": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.4",
"@types/node": "^10.12.10",
"@types/global-agent": "^2.1.0",
"husky": "4.2.3",
"jasmine": "^3.3.0",
"karma": "^3.1.1",
"karma-jasmine": "^2.0.1",
"semantic-release": "17.0.4",
"typescript": "^3.1.6"
},
"contributors": [
"Mark Ethan Trostler <[email protected]>",
"dignifiedquire <[email protected]>",
"Chris Wren <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Chris Wren <[email protected]>",
"Chris Wren <[email protected]>",
"Pawel Kozlowski <[email protected]>",
"Ralf Kistner <[email protected]>",
"Takashi Aoki <[email protected]>",
"Julian Motz <[email protected]>",
"Jason Marshall <[email protected]>",
"Santiago Suarez Ordoñez <[email protected]>",
"Sahat Yalkabov <[email protected]>",
"Shahar Talmi <[email protected]>",
"jackspirou <[email protected]>",
"sebv <[email protected]>",
"Benedikt Rötsch <[email protected]>",
"yhwh <[email protected]>",
"Caitlin Potter <[email protected]>",
"Dylan Lacey <[email protected]>",
"Eduardo Rabelo <[email protected]>",
"Jamie Mason <[email protected]>",
"Johannes Würbach <[email protected]>",
"Johannes Würbach <[email protected]>",
"Maks3w <[email protected]>",
"Matt Kubej <[email protected]>",
"OniOni <[email protected]>",
"Parashuram <[email protected]>",
"Parashuram N <[email protected]>",
"Peter Johason <[email protected]>",
"Paul Gschwendtner <[email protected]>",
"Christian Bromann <[email protected]>"
]
}