UNPKG

@n8n/n8n-benchmark

Version:

Cli for running benchmark tests for n8n

65 lines 1.75 kB
{ "name": "@n8n/n8n-benchmark", "version": "2.8.1", "description": "Cli for running benchmark tests for n8n", "main": "dist/index", "engines": { "node": ">=22.16" }, "keywords": [ "automate", "automation", "IaaS", "iPaaS", "n8n", "workflow", "benchmark", "performance" ], "dependencies": { "@oclif/core": "4.0.7", "axios": "1.16.0", "dotenv": "17.2.3", "nanoid": "3.3.8", "zx": "^8.8.5" }, "devDependencies": { "@types/convict": "^6.1.1", "@types/k6": "^0.52.0", "@n8n/typescript-config": "1.4.0" }, "bin": { "n8n-benchmark": "./bin/n8n-benchmark" }, "oclif": { "bin": "n8n-benchmark", "commands": "./dist/commands", "topicSeparator": " " }, "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", "author": { "name": "Jan Oberhauser", "email": "jan@n8n.io" }, "repository": { "type": "git", "url": "git+https://github.com/n8n-io/n8n.git" }, "scripts": { "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json", "format": "biome format --write .", "format:check": "biome ci .", "lint": "eslint . --quiet", "lint:fix": "eslint . --fix", "start": "./bin/n8n-benchmark", "test": "echo \"WARNING: no test specified\" && exit 0", "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": "tsc-watch -p tsconfig.build.json --onCompilationComplete \"tsc-alias -p tsconfig.build.json\"" } }