-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.87 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
{
"name": "@php-forge/debug-core-assets",
"private": true,
"type": "module",
"description": "Build pipeline for the framework-neutral PHP Forge debugger frontend.",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"format": "prettier --write 'resources/{src,tests}/**/*.js' 'e2e/**/*.js' 'tools/**/*.{mjs,json}' 'docs/**/*.md' 'playwright.config.js' 'vite.config.js' 'vitest.config.js' 'stryker.config.mjs' 'package.json'",
"format:check": "prettier --check 'resources/{src,tests}/**/*.js' 'e2e/**/*.js' 'tools/**/*.{mjs,json}' 'docs/**/*.md' 'playwright.config.js' 'vite.config.js' 'vitest.config.js' 'stryker.config.mjs' 'package.json'",
"lint:css": "stylelint --config .github/linters/.stylelintrc.json --config-basedir . 'resources/src/**/*.css'",
"lint:css:fix": "stylelint --config .github/linters/.stylelintrc.json --config-basedir . --fix 'resources/src/**/*.css'",
"lint:js": "eslint --config .github/linters/eslint.config.mjs resources e2e tools playwright.config.js vitest.config.js",
"lint:js:fix": "eslint --config .github/linters/eslint.config.mjs --fix resources e2e tools playwright.config.js vitest.config.js",
"test:js": "vitest run --coverage",
"test:mutation": "stryker run",
"fixtures:seed": "php tools/seed-debug-fixtures.php",
"check:size": "node tools/check-asset-size.mjs",
"check:contrast": "node tools/check-token-contrast.mjs",
"check:contrast:strict": "node tools/check-token-contrast.mjs --strict",
"test:e2e": "playwright test e2e/smoke.spec.js e2e/security.spec.js",
"test:e2e:list": "DEBUG_UI_SEED_FIXTURES=0 playwright test --list",
"test:a11y": "playwright test e2e/accessibility.spec.js",
"test:security": "playwright test e2e/security.spec.js",
"test:visual": "playwright test e2e/visual.spec.js",
"test:visual:compare": "DEBUG_UI_VISUAL_COMPARE=1 playwright test e2e/visual.spec.js",
"test:visual:update": "DEBUG_UI_VISUAL_COMPARE=1 playwright test e2e/visual.spec.js --update-snapshots",
"test:perf": "DEBUG_UI_SEED_FIXTURES=0 playwright test e2e/large-data.spec.js --project=desktop-1440",
"test:perf:live": "playwright test e2e/live-performance.spec.js --project=desktop-1440",
"test:browser": "playwright test e2e/smoke.spec.js e2e/security.spec.js e2e/accessibility.spec.js e2e/visual.spec.js"
},
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@fontsource/ibm-plex-sans": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"@playwright/test": "^1.62.1",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^10.8.0",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard-scss": "^17.0.0",
"vite": "^8.2.1",
"vitest": "^4.1.11"
},
"license": "BSD-3-Clause"
}