mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
50 lines
1.0 KiB
JSON
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:"
|
|
}
|
|
}
|