-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.37 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
{
"name": "selenium-grid-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"nightwatch-test": "nightwatch --env chrome_local",
"mocha-test": "mocha mocha/google.spec.js",
"automation-jest-local": "cross-env NODE_ENV=dev CHROME_MODE=headless jest --config ./jest.config.js",
"automation-jest-grid": "cross-env NODE_ENV=prod jest --config ./jest.config.js",
"automation-local": "cross-env NODE_ENV=dev CHROME_MODE=headless mocha mocha/google.spec.js",
"automation-grid": "cross-env NODE_ENV=prod mocha mocha/google.spec.js --reporter mocha-junit-reporter --reporter-options mochaFile=./reports/MochaWebdriverIO.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgarcia-dev/selenium-grid-test.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sgarcia-dev/selenium-grid-test/issues"
},
"homepage": "https://github.com/sgarcia-dev/selenium-grid-test#readme",
"devDependencies": {
"chai": "^4.1.2",
"colors": "^1.3.0",
"cross-env": "^5.2.0",
"jest": "^23.2.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"selenium-server": "^3.12.0",
"selenium-standalone": "^6.15.1",
"wdio-junit-reporter": "^0.4.3",
"wdio-mocha-framework": "^0.6.1",
"wdio-selenium-standalone-service": "0.0.10",
"webdriverio": "^4.13.1"
}
}