forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.43 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
{
"name": "webdriverio",
"description": "A nodejs bindings implementation for selenium 2.0/webdriver",
"version": "3.1.0",
"homepage": "http://webdriver.io",
"author": "Camilo Tapia <[email protected]>",
"contributors": [
"Dan Jenkins <[email protected]>",
"Christian Bromann <[email protected]>",
"Vincent Voyer <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/webdriverio.git"
},
"bugs": {
"url": "https://github.com/webdriverio/webdriverio/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/webdriverio/webdriverio/blob/master/LICENSE-MIT"
}
],
"main": "./index.js",
"bin": {
"wdio": "bin/wdio"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "node ./test/runner.js",
"test-mobile": "_APP=safari _BROWSER=safari _PLATFORMVERSION=7.1 _APPIUMVERSION=1.2 _PLATFORMNAME=iOS _DEVICENAME=iPhone_Simulator _PORT=4723 _ENV=mobile node ./test/runner.js",
"test-desktop": "_ENV=desktop _BROWSER=chrome node ./test/runner.js",
"test-functional": "_ENV=functional _BROWSER=phantomjs node ./test/runner.js",
"test-multibrowser": "_ENV=multibrowser node ./test/runner.js",
"coverage": "./node_modules/.bin/istanbul cover -x \"**/helpers/_*.js\" ./test/runner.js",
"prepublish": "npm prune"
},
"dependencies": {
"archiver": "~0.14.3",
"co": "^4.5.4",
"css-parse": "~2.0.0",
"css-value": "~0.0.1",
"deepmerge": "~0.2.7",
"ejs": "^2.3.1",
"glob": "^5.0.10",
"inquirer": "^0.8.5",
"optimist": "^0.6.1",
"q": "~1.3.0",
"request": "2.49.0",
"rgb2hex": "~0.1.0",
"supports-color": "^1.3.1",
"url": "~0.10.3",
"wgxpath": "~1.0.0"
},
"devDependencies": {
"chai": "~2.3.0",
"chai-as-promised": "^5.0.0",
"coveralls": "~2.11.2",
"es6-promise": "^2.1.1",
"glob": "~5.0.5",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"nock": "~1.7.1",
"sauce-connect-launcher": "^0.12.0",
"saucelabs": "~0.1.1",
"should": "^6.0.1"
},
"tags": [
"web",
"test",
"selenium",
"browser",
"javascript"
],
"keywords": [
"webdriverio",
"webdriver",
"selenium",
"appium",
"saucelabs",
"sauce",
"labs",
"mocha",
"nodeUnit",
"buster",
"phantomjs",
"chai",
"vows",
"jasmine",
"assert",
"cucumber",
"testingbot"
]
}