This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
118 lines (118 loc) · 3.48 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "wdio-allure-ts",
"version": "8.0.0",
"engines": {
"pnpm": "8.6.10",
"node": ">=16.20.0"
},
"description": "UI E2E testing util",
"license": "MIT",
"author": "Cloudinary <[email protected]>",
"homepage": "https://cloudinary.com",
"repository": {
"type": "git",
"url": "https://github.com/cloudinary/wdio-allure-ts"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"wdio-cli": "lib/helpers/runner.js",
"set-chrome-driver-to-env": "lib/scripts/SetDriverVersionToDotEnv.js"
},
"keywords": [
"cloudinary",
"allure",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter",
"test examples",
"E2E UI",
"examples"
],
"scripts": {
"lint": "eslint './src/**/*.ts'",
"typeCheck": "tsc --noEmit",
"prettier": "prettier --write 'src/**/*.ts'; prettier --write 'src/test/**/*.ts'",
"prepack": "pnpm lint && tsc && cp -R src/helpers/ lib/helpers && cp -R src/scripts/ lib/scripts",
"setChromeDriverVersion": "node src/scripts/SetDriverVersionToDotEnv.js",
"test": "pnpm pretest && wdio src/test/wdio.conf.ts --suite regression",
"spec": "wdio src/test/wdio.conf.ts --spec",
"pretest": "pnpm lint && pnpm typeCheck ",
"selenoid:start": "docker pull selenoid/chrome && docker-compose build && docker-compose up -d",
"selenoid:down": "docker-compose down",
"start:sampleApp": "ws --spa src/test/sampleApp/index.html",
"release": "standard-version",
"report": "allure generate --clean && allure open"
},
"resolutions": {
"minimist": "^1.2.6",
"trim-newlines": "^3.0.1",
"ansi-regex": "^5.0.1",
"nanoid": "^3.1.31",
"tar": "^6.1.2",
"trim-off-newlines": "^1.0.3",
"shelljs": "^0.8.5",
"node-fetch": "^2.6.7",
"simple-get": "^3.1.1",
"follow-redirects": "^1.14.7"
},
"dependencies": {
"@wdio/allure-reporter": "8.14.0",
"@wdio/cli": "8.14.4",
"@wdio/devtools-service": "8.14.3",
"@wdio/globals": "8.15.0",
"@wdio/local-runner": "8.14.3",
"@wdio/mocha-framework": "8.14.0",
"@wdio/protocols": "8.14.6",
"@wdio/selenium-standalone-service": "8.14.0",
"adm-zip": "^0.5.9",
"allure-commandline": "^2.17.2",
"axios": "^1.1.3",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"ip": "^1.1.8",
"lodash": "^4.17.21",
"ts-node": "^10.8.2",
"tsconfig-paths": "^3.14.1",
"wdio-docker-service": "^3.2.0",
"wdio-image-comparison-service": "5.0.3",
"webdriverio": "8.14.3",
"yargs": "^17.4.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/adm-zip": "^0.4.34",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-no-floating-promise": "^1.0.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-wdio": "^6.6.0",
"lint-staged": "^12.3.7",
"local-web-server": "^5.2.0",
"prettier": "2.0.5",
"standard-version": "^9.3.2",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './commitlint.config.js'"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
}
}