forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.69 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": "webdriverjs",
"description": "A nodejs bindings implementation for selenium 2.0/webdriver",
"version": "1.6.1",
"homepage": "https://github.com/camme/webdriverjs",
"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/camme/webdriverjs.git"
},
"bugs": {
"url": "https://github.com/camme/webdriverjs/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/camme/webdriverjs/blob/master/LICENSE-MIT"
}
],
"main": "./index.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "node ./test/runner.js",
"coverage": "./node_modules/.bin/istanbul cover ./test/runner.js",
"prepublish": "npm prune"
},
"devDependencies": {
"mocha": "~1.17.1",
"chai": "~1.9.0",
"jshint": "~2.4.1",
"saucelabs": "~0.1.1",
"glob": "~3.2.7",
"nock": "~0.27.1",
"coveralls": "~2.8.0",
"istanbul": "^0.2.6"
},
"tags": [
"web",
"test",
"selenium",
"browser",
"javascript"
],
"keywords": [
"webdriverjs",
"webdriver",
"selenium",
"saucelabs",
"sauce",
"labs",
"mocha",
"nodeUnit",
"buster",
"phantomjs",
"chai",
"vows",
"jasmine",
"assert",
"cucumber",
"testingbot"
],
"dependencies": {
"chainit": "^2.0.2-backcompat",
"pragma-singleton": "~1.0.3",
"archiver": "~0.6.1",
"request": "~2.34.0",
"deepmerge": "~0.2.7",
"crx": "~0.4.1",
"socket.io": "~0.9.16"
}
}