-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 794 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 794 Bytes
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
{
"name": "typescript-wdio-example",
"version": "1.0.0",
"description": "an example",
"author": "IgorYar",
"scripts": {
"pretest": "rm -rf build && tsc",
"test": "npx wdio run wdio.conf.ts",
"report": "allure serve ./build/allure-results",
"webdriver-update": "npx webdriver-manager update --standalone=false --gecko=false"
},
"devDependencies": {
"@types/node": "16.11.11",
"@wdio/cli": "^7.16.10",
"@wdio/local-runner": "^7.16.10",
"@wdio/mocha-framework": "^7.16.6",
"@wdio/spec-reporter": "^7.16.9",
"@wdio/allure-reporter": "^7.16.10",
"allure-commandline": "2.13.8",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"wdio-chromedriver-service": "^7.2.2",
"webdriverio": "^7.16.10",
"chromedriver": "99.0.0"
}
}