-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "web-automation-testing",
"version": "1.0.0",
"description": "Web Automation Testing",
"main": "index.js",
"scripts": {
"web-test": "node src/tests/web/googleSearch.js",
"unit-test": "mocha src/tests/unit/mochaRunner.js --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikeludemann/web-automation-testing.git"
},
"keywords": [
"Testing",
"Selenium",
"JavaScript",
"Web Automation",
"Browser",
"Testrunner",
"Frameworks",
"Mocha",
"Chai",
"E2E",
"Unit-Test"
],
"author": "Mike Ludemann",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikeludemann/web-automation-testing/issues"
},
"homepage": "https://github.com/mikeludemann/web-automation-testing#readme",
"devDependencies": {
"chai": "^4.2.0",
"chromedriver": "^2.46.0",
"geckodriver": "^1.16.1",
"log4js": "^4.1.0",
"mocha": "^6.0.2",
"selenium-webdriver": "^4.0.0-alpha.1"
},
"dependencies": {
"webdriverio": "^5.7.8"
}
}