2024-08-22 01:33:11 -07:00
|
|
|
{
|
|
|
|
"name": "@n8n/n8n-benchmark",
|
2024-08-28 04:34:34 -07:00
|
|
|
"version": "1.1.0",
|
2024-08-22 01:33:11 -07:00
|
|
|
"description": "Cli for running benchmark tests for n8n",
|
|
|
|
"main": "dist/index",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
2024-08-23 03:19:12 -07:00
|
|
|
"lint": "eslint .",
|
|
|
|
"lintfix": "eslint . --fix",
|
2024-08-22 01:33:11 -07:00
|
|
|
"start": "./bin/n8n-benchmark",
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
"typecheck": "tsc --noEmit",
|
2024-08-29 22:46:55 -07:00
|
|
|
"benchmark": "zx scripts/run.mjs",
|
|
|
|
"benchmark-in-cloud": "pnpm benchmark --env cloud",
|
|
|
|
"benchmark-locally": "pnpm benchmark --env local",
|
2024-09-04 03:14:41 -07:00
|
|
|
"provision-cloud-env": "zx scripts/provisionCloudEnv.mjs",
|
2024-08-23 04:43:26 -07:00
|
|
|
"destroy-cloud-env": "zx scripts/destroyCloudEnv.mjs",
|
2024-08-22 01:33:11 -07:00
|
|
|
"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:",
|
|
|
|
"convict": "6.2.4",
|
|
|
|
"dotenv": "8.6.0",
|
|
|
|
"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": " "
|
|
|
|
}
|
|
|
|
}
|