-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 3.12 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
{
"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' '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' '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",
"lint:js:fix": "eslint --config .github/linters/eslint.config.mjs --fix resources e2e tools playwright.config.js",
"test:js": "c8 node --test resources/tests/*.test.js",
"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"
},
"c8": {
"all": true,
"include": [
"resources/src/**/*.js"
],
"exclude": [
"resources/src/core/debug.js",
"resources/src/toolbar/element.js",
"resources/src/toolbar/index.js"
],
"reports-dir": "runtime/coverage-js",
"temp-directory": "runtime/coverage-js/tmp",
"check-coverage": true,
"lines": 100,
"branches": 100,
"functions": 100
},
"engines": {
"node": ">=22.12.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",
"c8": "^12.0.0",
"eslint": "^10.8.0",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard-scss": "^17.0.0",
"vite": "^8.2.1"
},
"license": "BSD-3-Clause"
}