api-throttle-tester
Version:
A production-ready CLI tool for stress-testing API endpoints to understand rate limits, throttling behavior, and latency characteristics
62 lines (60 loc) • 1.49 kB
JSON
{
"name": "api-throttle-tester",
"version": "1.0.0",
"description": "A production-ready CLI tool for stress-testing API endpoints to understand rate limits, throttling behavior, and latency characteristics",
"type": "module",
"main": "./dist/index.js",
"bin": {
"api-throttle-tester": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"start": "node dist/index.js",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"api",
"throttle",
"rate-limit",
"load-test",
"stress-test",
"cli",
"http",
"429",
"testing",
"performance"
],
"author": "Victor Akintayo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VictorAkintayo/api-throttle-tester.git"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"commander": "^11.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
}
}