-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "webtestingdemo",
"version": "1.0.0",
"description": "Boilerplate project to run WEB Test Automation WebdriverIO v6 with Mocha",
"main": "./node_modules/.bin/wdio",
"scripts": {
"clean": "shx rm -rf ./report",
"test": "wdio wdio.conf.js",
"test.sauce": "wdio wdio.saucelabs.conf.js",
"lint": "eslint .",
"report": "allure serve report/allure-results",
"report.ci": "allure generate report/allure-results --clean -o allure-report",
"report.teams": "node ./support/utils/teamsReporter.js ../../report/json/testResults.json"
},
"keywords": [
"mocha",
"uitesting",
"webdriver",
"webdriverio",
"e2e",
"selenium",
"test automation",
"javascript"
],
"author": "Serhat Bolsu <[email protected]>",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"shx": "^0.3.2",
"superagent": "^5.3.1"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/eslint-plugin": "^7.11.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@wdio/allure-reporter": "^7.5.2",
"@wdio/cli": "^7.5.2",
"@wdio/junit-reporter": "^7.5.2",
"@wdio/local-runner": "^7.5.2",
"@wdio/mocha-framework": "^7.5.2",
"@wdio/sauce-service": "^7.5.2",
"@wdio/selenium-standalone-service": "^7.5.2",
"@wdio/spec-reporter": "^7.5.2",
"@wdio/sync": "^7.5.2",
"babel-eslint": "^10.1.0",
"chromedriver": "^85.0.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-mocha": "^6.3.0",
"moment": "^2.27.0",
"wdio-chromedriver-service": "^7.0.0",
"wdio-json-reporter": "^2.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}