f675c25b83
Bumps the wdio group in /tests/wdio with 3 updates: [@wdio/cli](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-cli), [@wdio/local-runner](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-local-runner) and [@wdio/mocha-framework](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-mocha-framework). Updates `@wdio/cli` from 8.20.2 to 8.20.5 - [Release notes](https://github.com/webdriverio/webdriverio/releases) - [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md) - [Commits](https://github.com/webdriverio/webdriverio/commits/v8.20.5/packages/wdio-cli) Updates `@wdio/local-runner` from 8.20.0 to 8.20.5 - [Release notes](https://github.com/webdriverio/webdriverio/releases) - [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md) - [Commits](https://github.com/webdriverio/webdriverio/commits/v8.20.5/packages/wdio-local-runner) Updates `@wdio/mocha-framework` from 8.20.0 to 8.20.3 - [Release notes](https://github.com/webdriverio/webdriverio/releases) - [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md) - [Commits](https://github.com/webdriverio/webdriverio/commits/v8.20.3/packages/wdio-mocha-framework) --- updated-dependencies: - dependency-name: "@wdio/cli" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: wdio - dependency-name: "@wdio/local-runner" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: wdio - dependency-name: "@wdio/mocha-framework" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: wdio ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
1.4 KiB
JSON
32 lines
1.4 KiB
JSON
{
|
|
"name": "@goauthentik/web-tests",
|
|
"private": true,
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
|
|
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"@wdio/cli": "^8.20.5",
|
|
"@wdio/local-runner": "^8.20.5",
|
|
"@wdio/mocha-framework": "^8.20.3",
|
|
"@wdio/spec-reporter": "^8.20.0",
|
|
"eslint": "^8.52.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-plugin-sonarjs": "^0.21.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.0.3",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2",
|
|
"wdio-wait-for": "^3.0.7"
|
|
},
|
|
"scripts": {
|
|
"wdio": "wdio run ./wdio.conf.ts",
|
|
"lint:precommit": "eslint --max-warnings 0 --config ./.eslintrc.precommit.json $(git status --porcelain . | grep '^[AM?][M?]' | cut -d'/' -f3- | grep -E '\\.(ts|js|tsx|jsx)$')",
|
|
"lint": "eslint . --max-warnings 0 --fix",
|
|
"lint:spelling": "codespell -D - -D $(git rev-parse --show-toplevel 2> /dev/null)/.github/codespell-dictionary.txt -I $(git rev-parse --show-toplevel 2> /dev/null)/.github/codespell-words.txt ./test -s",
|
|
"precommit": "run-s lint:precommit lint:spelling prettier",
|
|
"prettier-check": "prettier --check .",
|
|
"prettier": "prettier --write ."
|
|
}
|
|
}
|