-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1018 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
33
34
35
36
37
38
{
"name": "webdriveriocucumberts",
"version": "1.0.0",
"description": "Learning WebdriverIO framework",
"main": "index.js",
"scripts": {
"test": "npx wdio wdio.conf.ts",
"smoke": "npx wdio wdio.conf.ts --suite smoke",
"regression": "npx wdio wdio.conf.ts --suite regression",
"report": "allure generate allure-results --clean && allure open"
},
"keywords": [
"webdriverio",
"typescript",
"cucumber",
"nodejs"
],
"author": "",
"license": "ISC",
"dependencies": {
"@wdio/cli": "^7.9.1"
},
"devDependencies": {
"@types/supertest": "^2.0.11",
"@wdio/allure-reporter": "^7.9.1",
"@wdio/cucumber-framework": "^7.9.1",
"@wdio/local-runner": "^7.9.1",
"@wdio/spec-reporter": "^7.9.0",
"allure-commandline": "^2.13.8",
"chromedriver": "^96.0.0",
"supertest": "^6.1.5",
"ts-node": "^10.2.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5",
"wdio-chromedriver-service": "^7.2.0",
"webdriverio": "^7.9.1"
}
}