forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.17 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
{
"name": "webdriverio",
"description": "A nodejs bindings implementation for selenium 2.0/webdriver",
"version": "2.3.0",
"homepage": "http://webdriver.io",
"author": "Camilo Tapia <camilo.tapia@gmail.com>",
"contributors": [
"Dan Jenkins <dan.jenkins@holidayextras.com>",
"Christian Bromann <mail@christian-bromann.com>",
"Vincent Voyer <vincent@zeroload.net>"
],
"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",
"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",
"coverage": "./node_modules/.bin/istanbul cover -x \"**/helpers/_*.js\" ./test/runner.js",
"prepublish": "npm prune"
},
"dependencies": {
"archiver": "~0.6.1",
"async": "^0.9.0",
"chainit": "^2.1.1",
"css-parse": "^1.7.0",
"css-value": "0.0.1",
"deepmerge": "~0.2.7",
"pragma-singleton": "~1.0.3",
"request": "~2.34.0",
"rgb2hex": "^0.1.0",
"url": "^0.10.1",
"wgxpath": "^0.23.0"
},
"devDependencies": {
"chai": "~1.9.0",
"coveralls": "~2.8.0",
"glob": "~3.2.7",
"istanbul": "^0.2.6",
"jshint": "~2.4.1",
"mocha": "~1.17.1",
"nock": "~0.27.1",
"saucelabs": "~0.1.1",
"should": "^3.3.2"
},
"tags": [
"web",
"test",
"selenium",
"browser",
"javascript"
],
"keywords": [
"webdriverio",
"webdriver",
"selenium",
"appium",
"saucelabs",
"sauce",
"labs",
"mocha",
"nodeUnit",
"buster",
"phantomjs",
"chai",
"vows",
"jasmine",
"assert",
"cucumber",
"testingbot"
]
}