This repository has been archived by the owner on Jan 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
78 lines (78 loc) · 2.02 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
{
"name": "wct-sauce",
"version": "2.0.1",
"description": "WCT plugin that enables support for sauce browsers via Sauce Labs",
"keywords": [
"wct",
"web-component-tester",
"plugin"
],
"homepage": "https://github.com/Polymer/wct-sauce",
"bugs": "https://github.com/Polymer/wct-sauce/issues",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/Polymer/wct-sauce.git"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "mocha"
},
"main": "lib/plugin.js",
"wct-plugin": {
"cli-options": {
"browsers": {
"help": "Remote Sauce Labs browsers to run tests on, or 'default'.",
"full": "sauce",
"metavar": "NAME",
"abbr": "s",
"list": true
},
"username": {
"help": "Sauce Labs username.",
"full": "sauce-username"
},
"accessKey": {
"help": "Sauce Labs access key.",
"full": "sauce-access-key"
},
"tunnelId": {
"help": "Sauce Connect tunnel identifier.",
"full": "sauce-tunnel-id"
},
"buildNumber": {
"help": "The build number tested by this test for the sauce labs REST API.",
"full": "build-number"
},
"jobName": {
"help": "Job name for the sauce labs REST API.",
"full": "job-name"
},
"visibility": {
"help": "Set job visibility to 'public', 'public restricted', 'share', 'team' or 'private'",
"full": "visibility"
},
"port": {
"help": "Select an alternative port for Sauce Connect (default is 4445)",
"full": "port"
}
}
},
"dependencies": {
"chalk": "^1.1.1",
"cleankill": "^2.0.0",
"lodash": "^3.0.1",
"request": "^2.85.0",
"sauce-connect-launcher": "^1.0.0",
"temp": "^0.8.1",
"uuid": "^2.0.1"
},
"devDependencies": {
"chai": "^3.3.0",
"gulp": "^3.8.10",
"gulp-jshint": "^2.0.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"mocha": "^2.2.4"
}
}