-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
96 lines (96 loc) · 3.11 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
{
"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 <vojta.jina@gmail.com>",
"dependencies": {
"global-agent": "^2.1.12",
"saucelabs": "6.2.2",
"webdriverio": "^6.7.0"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.0.10",
"@types/fs-extra": "^9.0.6",
"@types/global-agent": "^2.1.0",
"@types/node": "^14.14.22",
"husky": "4.3.8",
"jasmine": "^3.6.4",
"karma": "^5.2.3",
"karma-jasmine": "^4.0.1",
"semantic-release": "17.3.7",
"typescript": "^4.1.3"
},
"contributors": [
"Mark Ethan Trostler <mark@zzo.com>",
"dignifiedquire <dignifiedquire@gmail.com>",
"Chris Wren <chris@saucelabs.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Chris Wren <cthewren@gmail.com>",
"Chris Wren <chriswrendev@gmail.com>",
"Pawel Kozlowski <pkozlowski.opensource@gmail.com>",
"Ralf Kistner <ralf@embarkmobile.com>",
"Takashi Aoki <taak77@gmail.com>",
"Julian Motz <me@julianmotz.com>",
"Jason Marshall <jdmarshall@users.noreply.github.com>",
"Santiago Suarez Ordoñez <santiycr@gmail.com>",
"Sahat Yalkabov <sakhat@gmail.com>",
"Shahar Talmi <shahar.talmi@gmail.com>",
"jackspirou <jack.spirou@target.com>",
"sebv <seb.vincent@gmail.com>",
"Benedikt Rötsch <axe312ger@users.noreply.github.com>",
"yhwh <ferrero.nicolas@gmail.com>",
"Caitlin Potter <caitpotter88@gmail.com>",
"Dylan Lacey <github@dylanlacey.com>",
"Eduardo Rabelo <oieduardorabelo@gmail.com>",
"Jamie Mason <siunmaru@gmail.com>",
"Johannes Würbach <johannes.wuerbach@googlemail.com>",
"Johannes Würbach <johannes.wuerbach@googlemail.com>",
"Maks3w <github.maks3w@virtualplanets.net>",
"Matt Kubej <mkubej@gmail.com>",
"OniOni <mathieu.c.sabourin@gmail.com>",
"Parashuram <code@nparashuram.com>",
"Parashuram N <code@r.nparashuram.com>",
"Peter Johason <peter@peterjohanson.com>",
"Paul Gschwendtner <paulgschwendtner@gmail.com>",
"Christian Bromann <chrisian@saucelabs.com>",
"Wim Selles <wim@wswebcreation.nl>"
]
}