n8n/packages/testing/code-health/package.json
Declan Carroll a60ef7dbb5
ci: Gate PRs on code-health and janitor checks (#30091)
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-12 09:02:53 +00:00

39 lines
929 B
JSON

{
"name": "@n8n/code-health",
"private": true,
"version": "0.1.0",
"description": "Static analysis and code quality enforcement for the n8n monorepo",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"code-health": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"check": "tsx src/cli.ts",
"build": "tsc -p tsconfig.build.json",
"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"
},
"license": "MIT",
"devDependencies": {
"@n8n/rules-engine": "workspace:*",
"@n8n/vitest-config": "workspace:*",
"@vitest/coverage-v8": "catalog:",
"fast-glob": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"yaml": "catalog:"
}
}