2025-05-06 13:27:19 +00:00
|
|
|
{
|
2025-06-17 16:09:44 +00:00
|
|
|
"name": "@n8n/backend-test-utils",
|
2025-06-23 12:25:00 +00:00
|
|
|
"version": "0.3.0",
|
2025-05-06 13:27:19 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rimraf dist .turbo",
|
|
|
|
|
"dev": "pnpm watch",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"build": "tsc -p tsconfig.build.json",
|
|
|
|
|
"format": "biome format --write .",
|
|
|
|
|
"format:check": "biome ci .",
|
2025-06-27 08:42:47 +00:00
|
|
|
"lint": "eslint . --quiet",
|
2025-05-06 13:27:19 +00:00
|
|
|
"lintfix": "eslint . --fix",
|
|
|
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
|
|
|
"test": "jest",
|
|
|
|
|
"test:dev": "jest --watch"
|
|
|
|
|
},
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"module": "src/index.ts",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/**/*"
|
|
|
|
|
],
|
|
|
|
|
"dependencies": {
|
2025-06-17 12:51:30 +00:00
|
|
|
"@n8n/backend-common": "workspace:^",
|
2025-06-25 15:32:54 +00:00
|
|
|
"@n8n/config": "workspace:^",
|
|
|
|
|
"@n8n/constants": "workspace:^",
|
|
|
|
|
"@n8n/db": "workspace:^",
|
|
|
|
|
"@n8n/di": "workspace:^",
|
|
|
|
|
"@n8n/permissions": "workspace:^",
|
|
|
|
|
"@n8n/typeorm": "catalog:",
|
2025-06-17 12:51:30 +00:00
|
|
|
"jest-mock-extended": "^3.0.4",
|
2025-06-25 15:32:54 +00:00
|
|
|
"n8n-workflow": "workspace:^",
|
|
|
|
|
"reflect-metadata": "catalog:",
|
|
|
|
|
"uuid": "catalog:"
|
2025-05-06 13:27:19 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@n8n/typescript-config": "workspace:*"
|
|
|
|
|
}
|
|
|
|
|
}
|