UNPKG

stressy

Version:

A comprehensive HTTP stress testing library for Node.js

57 lines 1.19 kB
{ "name": "stressy", "version": "0.1.2", "description": "A comprehensive HTTP stress testing library for Node.js", "main": "src/index.js", "type": "module", "scripts": { "dev": "node examples/basic-usage.js", "cli": "node bin/cli.js", "test": "node --test", "test:coverage": "node --test --experimental-test-coverage" }, "keywords": [ "stress-test", "load-test", "api-testing", "performance", "http", "testing", "benchmark", "nodejs", "stressy" ], "author": "ArthurRushanyan", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ArturRushanyan/stressy.git" }, "homepage": "https://github.com/ArturRushanyan/stressy#readme", "bugs": { "url": "https://github.com/ArturRushanyan/stressy/issues" }, "files": [ "src/", "bin/", "examples/", "tests/", "README.md", "LICENSE" ], "dependencies": { "axios": "^1.6.0", "chalk": "^4.1.2", "cli-progress": "^3.12.0", "yargs": "^17.7.2" }, "devDependencies": { "nock": "^13.4.0" }, "bin": { "stress-tester": "./bin/cli.js" }, "engines": { "node": ">=16.0.0" } }