-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.83 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.83 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
{
"name": "@public-ui/benchmark-tests",
"version": "2.2.11",
"license": "EUPL-1.2",
"homepage": "https://public-ui.github.io",
"repository": {
"type": "git",
"url": "https://github.com/public-ui/kolibri"
},
"bugs": {
"url": "https://github.com/public-ui/kolibri/issues",
"email": "kolibri@itzbund.de"
},
"author": {
"name": "Informationstechnikzentrum Bund",
"email": "kolibri@itzbund.de"
},
"private": true,
"type": "commonjs",
"description": "Provides benchmark tests for components and themes.",
"scripts": {
"build:deps": "pnpm --filter @public-ui/components --filter @public-ui/theme-default build",
"format": "prettier --check tests",
"pretest": "rimraf public/*/ && npm-run-all2 pretest:*",
"pretest:components-assets": "cpy \"node_modules/@public-ui/components/assets/**/*\" public/assets --dot",
"pretest:components-dist": "cpy \"node_modules/@public-ui/components/dist/**/*\" public/components --dot",
"pretest:themes-assets": "cpy \"node_modules/@public-ui/theme-default/assets/**/*\" public/assets --dot",
"pretest:themes-dist": "cpy \"node_modules/@public-ui/theme-default/dist/**/*\" public/theme --dot",
"pretest-benchmark": "pnpm pretest",
"test-benchmark": "pnpm test-with-playwright",
"test-with-playwright": "playwright test",
"test-with-wdio": "wdio",
"unused": "knip"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@public-ui/components": "workspace:*",
"@public-ui/theme-default": "workspace:*",
"@types/mocha": "10.0.10",
"@types/node": "24.11.0",
"@wdio/cli": "9.24.0",
"@wdio/globals": "9.23.0",
"@wdio/local-runner": "9.24.0",
"@wdio/mocha-framework": "9.24.0",
"@wdio/spec-reporter": "9.24.0",
"chromedriver": "140.0.4",
"cpy-cli": "6.0.0",
"knip": "5.85.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"http-server": "14.1.1"
}
}