-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"name": "webdriverio-tests",
"version": "0.1.0",
"private": true,
"type": "module",
"devDependencies": {
"@types/node-fetch": "^2.6.3",
"@wdio/allure-reporter": "^8.8.7",
"@wdio/browserstack-service": "^8.8.7",
"@wdio/cli": "^8.8.7",
"@wdio/jasmine-framework": "^8.8.7",
"@wdio/local-runner": "^8.8.7",
"@wdio/selenium-standalone-service": "^8.8.7",
"@wdio/spec-reporter": "^8.8.7",
"node-fetch": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"wdio-wait-for": "^3.0.3"
},
"scripts": {
"_comment": "wdio: wdio run test/wdio.conf.ts",
"wdio": "wdio run config/wdio.conf.ts",
"allure-report": "allure generate --clean ./reports/allure/allure-results -o ./reports/allure/allure-report && allure open",
"wdio:bstack": "wdio run config/wdio.conf.bstack.ts",
"wdio:docker": "wdio run config/wdio.docker.conf.ts"
},
"dependencies": {
"@types/jasmine": "^4.3.1",
"allure-commandline": "^2.21.0",
"dotenv": "^16.0.3"
}
}