-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.93 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.93 KB
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": "wd",
"description": "WebDriver/Selenium 2 node.js client",
"tags": [
"web",
"automation",
"browser",
"javascript"
],
"version": "0.2.19",
"author": "Adam Christian <adam.christian@gmail.com>",
"contributors": [
"Ruben Daniels (https://github.com/javruben)",
"Peter Braden (https://github.com/peterbraden)",
"Seb Vincent (https://github.com/sebv)",
"Peter 'Pita' Martischka (https://github.com/Pita)",
"Jonathan Lipps (https://github.com/jlipps)",
"Phil Sarin (https://github.com/pdsarin)",
"Mathieu Sabourin (https://github.com/OniOni)",
"Bjorn Tipling (https://github.com/btipling)",
"Santiago Suarez Ordonez (https://github.com/santiycr)",
"Bernard Kobos (https://github.com/bernii)",
"Jason Carr (https://github.com/maudineormsby)",
"Matti Schneider <hi@mattischneider.fr> (https://github.com/MattiSG)"
],
"repository": {
"type": "git",
"url": "https://github.com/admc/wd.git"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"bugs": {
"url": "https://github.com/admc/wd/issues"
},
"engines": [
"node"
],
"main": "./lib/main",
"bin": {
"wd": "./lib/bin.js"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"async": "~0.2.10",
"vargs": "~0.1.0",
"q": "~1.0.1",
"request": "~2.33.0",
"archiver": "~0.5.2",
"lodash": "~2.4.1",
"underscore.string": "~2.3.3"
},
"devDependencies": {
"mocha": "~1.18.2",
"nock": "~0.28.2",
"express": "~4.0.0",
"imageinfo": "~1.0.4",
"dox": "~0.4.4",
"mu2": "~0.5.20",
"sv-selenium": "~0.2.3",
"colors": "~0.6.2",
"chai-as-promised": "~4.1.1",
"chai": "~1.9.1",
"hbs": "~2.6.0",
"istanbul": "~0.2.7",
"promise-simple": "~0.1.0",
"jshint": "~2.5.0"
},
"scripts": {
"test": "make test",
"test_sauce": "make test_e2e_sauce"
}
}