This repository has been archived by the owner on Mar 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 2.09 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
{
"name": "rowdy",
"version": "0.5.0",
"description": "WD.js / WebdriverIO configuration wrapper.",
"main": "index.js",
"dependencies": {
"colors": "1.1.0",
"lodash": "3.8.0",
"portscanner": "^1.0.0",
"tree-kill": "^1.0.0"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-defaults": "^8.0.2",
"eslint-plugin-filenames": "^0.2.0",
"guacamole": "^1.1.2",
"mocha": "^2.2.4",
"phantomjs-prebuilt": "^2.1.5",
"saucelabs": "^0.1.1",
"selenium-standalone": "4.7.2",
"wd": "^0.3.11",
"webdriverio": "^3.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/rowdy"
},
"keywords": [
"functional test",
"integration test",
"test",
"selenium",
"mocha",
"wd.js",
"webdriverio",
"webdriver"
],
"author": "Ryan Roemer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/rowdy/issues"
},
"scripts": {
"lint-server": "eslint -c .eslintrc-server adapters helpers lib *.js examples/*/*/*.js",
"lint-server-test": "eslint -c .eslintrc-server-test examples/*/*/test",
"lint": "npm run lint-server && npm run lint-server-test",
"check": "npm run lint",
"check-all": "npm run lint && npm run test",
"test": "npm run test-wd && npm run test-webdriverio",
"test-wd": "npm run test-wd-default-config && npm run test-wd-manual-config && npm run test-wd-per-test-client",
"test-wd-default-config": "cd examples/mocha/wd && mocha",
"test-wd-manual-config": "cd examples/mocha/wd && mocha --require ./setup-manual-config",
"test-wd-per-test-client": "cd examples/mocha/wd && mocha --require ./setup-per-test-client",
"test-webdriverio": "npm run test-webdriverio-manual-config && npm run test-webdriverio-per-test-client",
"test-webdriverio-manual-config": "cd examples/mocha/webdriverio && mocha",
"test-webdriverio-per-test-client": "cd examples/mocha/webdriverio && mocha --require ./setup-per-test-client",
"install-selenium": "selenium-standalone install"
}
}