mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
73f89ef101
Co-authored-by: ShireenMissi <94372015+ShireenMissi@users.noreply.github.com>
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "@n8n/n8n-benchmark",
|
|
"version": "1.4.0",
|
|
"description": "Cli for running benchmark tests for n8n",
|
|
"main": "dist/index",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome ci .",
|
|
"lint": "eslint .",
|
|
"lintfix": "eslint . --fix",
|
|
"start": "./bin/n8n-benchmark",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"typecheck": "tsc --noEmit",
|
|
"benchmark": "zx scripts/run.mjs",
|
|
"benchmark-in-cloud": "pnpm benchmark --env cloud",
|
|
"benchmark-locally": "pnpm benchmark --env local",
|
|
"provision-cloud-env": "zx scripts/provision-cloud-env.mjs",
|
|
"destroy-cloud-env": "zx scripts/destroy-cloud-env.mjs",
|
|
"watch": "concurrently \"tsc -w -p tsconfig.build.json\" \"tsc-alias -w -p tsconfig.build.json\""
|
|
},
|
|
"engines": {
|
|
"node": ">=20.10"
|
|
},
|
|
"keywords": [
|
|
"automate",
|
|
"automation",
|
|
"IaaS",
|
|
"iPaaS",
|
|
"n8n",
|
|
"workflow",
|
|
"benchmark",
|
|
"performance"
|
|
],
|
|
"dependencies": {
|
|
"@oclif/core": "4.0.7",
|
|
"axios": "catalog:",
|
|
"dotenv": "8.6.0",
|
|
"nanoid": "catalog:",
|
|
"zx": "^8.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/convict": "^6.1.1",
|
|
"@types/k6": "^0.52.0",
|
|
"@types/node": "^20.14.8",
|
|
"tsc-alias": "^1.8.7",
|
|
"typescript": "^5.5.2"
|
|
},
|
|
"bin": {
|
|
"n8n-benchmark": "./bin/n8n-benchmark"
|
|
},
|
|
"oclif": {
|
|
"bin": "n8n-benchmark",
|
|
"commands": "./dist/commands",
|
|
"topicSeparator": " "
|
|
}
|
|
}
|