-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.59 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
{
"name": "webdriverjs-helper",
"description": "JavaScript WebDriver Helper offer friendly APIs while using selenium-webdriver.",
"version": "1.7.1",
"homepage": "https://github.com/surevine/webdriverjs-helper",
"author": {
"name": "Wang Qiu",
"email": "winsonwq@gmail.com",
"url": "http://ishouldbeageek.me"
},
"contributors": [
{
"name": "Lloyd Watkin",
"email": "lloyd.watkin@surevine.com",
"url": "http://twitter.com/lloydwatkin"
},
{
"name": "Martin Hewitt",
"email": "martin.hewitt@surevine.com",
"url": "http://twitter.com/handlewithcare"
}
],
"repository": {
"type": "git",
"url": "git@github.com:surevine/webdriverjs-helper.git"
},
"bugs": {
"url": "https://github.com/surevine/webdriverjs-helper/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/surevine/webdriverjs-helper/blob/master/LICENSE"
}
],
"main": "lib/webdriverjs-helper",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"build": "cake build",
"install": "npm run build",
"test": "npm install && grunt test"
},
"dependencies": {
"selenium-webdriver": ">=2.33.0",
"underscore": "~1.6.0",
"coffee-script": "~1.7.1",
"async": "~0.8.0"
},
"devDependencies": {
"grunt-contrib-watch": "~0.2.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-mocha-cli": "~1.3.0",
"grunt-contrib-connect": "~0.5.0",
"grunt": "~0.4.1",
"yadda": "^0.10.12",
"chai": "^1.9.1"
},
"keywords": [
"testing",
"webdriver",
"selenium",
"javascript"
]
}