-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "page-chauffeur",
"version": "0.3.3",
"description": "A cross browser library for writing functional tests using webdriver",
"main": "index.js",
"scripts": {
"test": "grunt test",
"test-int": "grunt test-int",
"test-int-ff": "CHAUFFEUR_BROWSER=firefox grunt test-int",
"test-int-chrome": "CHAUFFEUR_BROWSER=chrome grunttest-int",
"test-int-all": "npm run test-int && npm run test-int-ff && npm run test-int-chrome",
"test-ci": "grunt ci",
"coverage": "grunt coverage",
"coverage-int": "grunt coverage-int",
"complexity": "grunt complexity"
},
"repository": {
"type": "git",
"url": "https://github.com/lawrencec/chauffeur"
},
"keywords": [
"webdriver",
"webdriverjs",
"browser",
"mocha",
"chai",
"selenium",
"phantomjs",
"page-object",
"pageobject",
"page objects"
],
"author": "Lawrence Carvalho",
"license": "MIT",
"bugs": {
"url": "https://github.com/lawrencec/chauffeur/issues"
},
"dependencies": {
"webdriverjs": "~1.5.1",
"selenium-webdriver": "~2.42.1",
"chai": "1.9.0",
"sinon-chai": "~2.5.0",
"mocha": "~1.19.0",
"unroll": "0.0.2"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.9.2",
"grunt-contrib-watch": "~0.6.0",
"grunt": "~0.4.2",
"grunt-mocha-cli": "~1.7.0",
"grunt-complexity": "~0.1.4",
"grunt-cli": "~0.1.13",
"istanbul": "~0.2.6",
"grunt-contrib-connect": "~0.7.1",
"grunt-selenium-webdriver": "~0.2.420",
"grunt-mocha-istanbul": "~1.2.0"
}
}