-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.27 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
{
"name": "selenium-scaling-demo",
"version": "0.0.1",
"description": "Selenium Scaling Demo",
"main": "index.js",
"scripts": {
"test": "nightwatch",
"remote100": "nightwatch --env zalenium",
"remote-single": "nightwatch --env zalenium --filter google-search01*",
"local-single": "nightwatch --env local --filter google-search01*",
"local10-serial": "nightwatch --env serial --filter google-search0*",
"local10": "nightwatch --env local-parallel --filter google-search0*",
"remote10": "nightwatch --env zalenium --filter google-search0*",
"edge": "nightwatch --env edge --filter google-search01*",
"speed-comparison": "nightwatch --env chromecomp,zalenium --filter google-search99*",
"selenoid": "nightwatch --env selenoid --filter google-search01*",
"moon": "nightwatch --env moon --filter google-search0*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlikelyzero/scaling-selenium-demo.git"
},
"author": "unlikelyzero",
"homepage": "https://github.com/unlikelyzero/scaling-selenium-demo#readme",
"dependencies": {
"nightwatch": "0.9.20"
},
"devDependencies": {
"chromedriver": "78.0.1",
"selenium-server-standalone-jar": "^3.141.59"
},
"keywords": [
"nightwatch",
"testing"
]
}