-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.9 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
{
"name": "webdriverio-mocha-framework",
"version": "1.0.0",
"description": "WebdriverIO UI Automation Framework",
"main": "index.js",
"scripts": {
"test": "wdio tests/config/wdio.conf.ts",
"test:bs": "wdio tests/config/wdio.conf.bs.ts",
"test:edge": "wdio tests/config/wdio.conf.edge.ts",
"cross:browser": "wdio tests/config/wdio.conf.cross-browser.ts",
"smoke": "wdio tests/config/wdio.conf.ts --suite smoke --mochaOpts.grep TC_001",
"move": "cp -r ./allure-report/history ./allure-results",
"report": "allure generate allure-results --clean && allure open",
"report:html": "allure generate --single-file allure-results --clean",
"cleanup": "rm -rf allure-results",
"docker:start": "docker compose -f tests/docker/docker-compose.yml up -d",
"docker:start:arm": "docker compose -f tests/docker/docker-compose-arm.yml up -d",
"test:docker": "wdio run ./tests/config/wdio.conf.docker.ts",
"docker:stop": "docker compose -f tests/docker/docker-compose.yml down",
"docker:stop:arm": "docker compose -f tests/docker/docker-compose-arm.yml down",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"author": "MD SADAB SAQIB",
"license": "ISC",
"devDependencies": {
"@reportportal/agent-js-webdriverio": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@wdio/allure-reporter": "^8.36.1",
"@wdio/browserstack-service": "^8.36.1",
"@wdio/cli": "^8.36.1",
"@wdio/local-runner": "^8.36.1",
"@wdio/mocha-framework": "^8.36.1",
"@wdio/spec-reporter": "^8.36.1",
"allure-commandline": "^2.28.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-wdio": "^8.24.12",
"husky": "^9.0.11",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"wdio-docker-service": "^3.2.1"
},
"dependencies": {
"npm-check-updates": "^16.14.18"
}
}