-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "webdriver-helper",
"description": "JavaScript WebDriver Helper offer the friendly apis while using selenium-webdriver.",
"version": "0.2.1",
"homepage": "https://github.com/winsonwq/webdriver-helper",
"author": {
"name": "Wang Qiu",
"email": "[email protected]",
"url": "http://ishouldbeageek.me"
},
"repository": {
"type": "git",
"url": "[email protected]:winsonwq/webdriver-helper.git"
},
"bugs": {
"url": "https://github.com/winsonwq/webdriver-helper/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/winsonwq/webdriver-helper/blob/master/LICENSE-MIT"
}
],
"main": "lib/webdriver-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": "*",
"Mr.Async": "~0.3.1"
},
"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",
"chai": "*",
"grunt": "~0.4.1"
},
"keywords": [
"testing",
"webdriver",
"selenium",
"javascript"
]
}