-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 983 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 983 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
27
28
29
30
31
32
{
"name": "webdriverio-typescript-tests",
"version": "1.0.0",
"description": "E2E webdriverio tests using page objects with Typescripts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"wdio": "wdio run test/wdio.conf.ts",
"generateReport": "allure generate allure-results --clean && allure open"
},
"keywords": [
"webdriverio",
"pageobjects",
"typescript"
],
"author": "Sanjeev Kumar",
"license": "ISC",
"devDependencies": {
"@wdio/allure-reporter": "^7.19.7",
"@wdio/cli": "^7.19.7",
"@wdio/local-runner": "^7.19.7",
"@wdio/mocha-framework": "^7.19.7",
"@wdio/spec-reporter": "^7.19.7",
"chromedriver": "^101.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.6.4",
"wdio-chromedriver-service": "^7.3.2"
},
"dependencies": {
"allure-commandline": "^2.17.2"
}
}