n8n/packages/testing/janitor/package.json
Declan Carroll 886f22ee6d
chore: Add code-health baseline and fix janitor catalog violation (no-changelog) (#28958)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-23 09:55:55 +00:00

50 lines
1.0 KiB
JSON

{
"name": "@n8n/playwright-janitor",
"private": true,
"version": "0.1.0",
"description": "Static analysis and architecture enforcement for Playwright test suites",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"playwright-janitor": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "biome format --write .",
"format:check": "biome ci .",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"keywords": [
"playwright",
"testing",
"static-analysis",
"architecture",
"linting"
],
"license": "MIT",
"dependencies": {
"@n8n/rules-engine": "workspace:*",
"glob": "^10.0.0"
},
"peerDependencies": {
"ts-morph": ">=20.0.0"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"ts-morph": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}