-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.05 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.05 KB
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
119
120
121
122
123
124
125
{
"name": "@red-hat-developer-hub/e2e-test-utils",
"version": "1.1.29",
"description": "Test utilities for RHDH E2E tests",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-developer/rhdh-e2e-test-utils.git",
"directory": "."
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./eslint": {
"types": "./dist/eslint/base.config.d.ts",
"default": "./dist/eslint/base.config.js"
},
"./test": {
"types": "./dist/playwright/fixtures/test.d.ts",
"default": "./dist/playwright/fixtures/test.js"
},
"./playwright-config": {
"types": "./dist/playwright/base-config.d.ts",
"default": "./dist/playwright/base-config.js"
},
"./tsconfig": "./tsconfig.base.json",
"./rhdh": {
"types": "./dist/deployment/rhdh/index.d.ts",
"default": "./dist/deployment/rhdh/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
},
"./helpers": {
"types": "./dist/playwright/helpers/index.d.ts",
"default": "./dist/playwright/helpers/index.js"
},
"./pages": {
"types": "./dist/playwright/pages/index.d.ts",
"default": "./dist/playwright/pages/index.js"
},
"./keycloak": {
"types": "./dist/deployment/keycloak/index.d.ts",
"default": "./dist/deployment/keycloak/index.js"
},
"./teardown": {
"types": "./dist/playwright/teardown-namespaces.d.ts",
"default": "./dist/playwright/teardown-namespaces.js"
},
"./orchestrator": {
"types": "./dist/deployment/orchestrator/index.d.ts",
"default": "./dist/deployment/orchestrator/index.js"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"tsconfig.base.json"
],
"scripts": {
"build": "yarn clean && tsc -p tsconfig.build.json && cp -r src/deployment/rhdh/config dist/deployment/rhdh/ && cp -r src/deployment/keycloak/config dist/deployment/keycloak/ && cp src/deployment/orchestrator/install-orchestrator.sh dist/deployment/orchestrator/",
"prepare": "husky",
"check": "yarn typecheck && yarn lint:check && yarn prettier:check",
"clean": "rm -rf dist",
"lint:check": "eslint . --ignore-pattern dist --ignore-pattern README.md --ignore-pattern docs",
"lint:fix": "eslint . --fix --ignore-pattern dist --ignore-pattern README.md --ignore-pattern docs",
"prepack": "yarn build",
"prepublishOnly": "yarn build",
"prettier:check": "prettier --check . '!dist' '!README.md' '!docs' '!.github/workflows/deploy-docs.yml'",
"prettier:fix": "prettier --write . '!dist' '!README.md' '!docs' '!.github/workflows/deploy-docs.yml'",
"test": "node --test \"dist/**/*.test.js\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"e2e",
"playwright",
"rhdh",
"test-utils"
],
"engines": {
"node": ">=22.18.0",
"yarn": ">=3"
},
"peerDependencies": {
"@playwright/test": "^1.57.0"
},
"devDependencies": {
"@backstage/catalog-model": "1.7.5",
"@playwright/test": "^1.57.0",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash.clonedeepwith": "^4.5.9",
"@types/lodash.mergewith": "^4.6.9",
"@types/node": "^24.10.1",
"@types/proper-lockfile": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"markdown-link-check": "^3.13.6"
},
"dependencies": {
"@axe-core/playwright": "^4.11.0",
"@backstage-community/plugin-rbac-common": "1.23.0",
"@eslint/js": "^9.39.1",
"@keycloak/keycloak-admin-client": "26.5.6",
"@kubernetes/client-node": "^1.4.0",
"eslint": "^9.39.1",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-playwright": "^2.4.0",
"fs-extra": "^11.3.2",
"js-yaml": "^4.1.1",
"lodash.clonedeepwith": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"otplib": "12.0.1",
"prettier": "^3.7.4",
"proper-lockfile": "^4.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"zx": "^8.8.5"
},
"packageManager": "yarn@3.8.7"
}