This repository was archived by the owner on Feb 24, 2022. It is now read-only.
forked from jsdevel/webdriver-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "webdriver-sync",
"version": "0.20.0",
"description": "Selenium testing without nested callbacks or promises!",
"main": "src/webdriver-sync.js",
"scripts": {
"lint-src": "node_modules/.bin/jshint --config .jshintrc src/**/*.js",
"lint-test": "node_modules/.bin/jshint --config .test-jshintrc test/**/*.js",
"mocha": "node_modules/.bin/mocha -r should --no-timeouts test/*.js test/classes/*.js test/enums/*.js test/interfaces/*.js",
"test": "npm run lint-src && npm run lint-test && npm run mocha"
},
"dependencies": {
"async": "^0.7.0",
"java": "^0.8.0",
"selenium-binaries": "^0.13.1"
},
"devDependencies": {
"jshint": "^2.3.0",
"mocha": "^3.2.0",
"proxyquire": "^1.7.0",
"should": "^11.0.0",
"sinon": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/timonag/webdriver-sync.git"
},
"keywords": [
"webdriver",
"selenium",
"testing",
"sync",
"synchronous",
"api",
"chrome",
"safari",
"internet explorer",
"explorer",
"internet",
"ie",
"driver",
"node",
"javascript"
],
"author": "Joseph Spencer",
"contributors": [
"Artsiom Halubotski <timon.test@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/timonag/webdriver-sync/issues"
}
}