pandoras-box
Version:
A small and simple stress testing tool for Ethereum-compatible blockchain networks
70 lines (69 loc) • 2.09 kB
JSON
{
"name": "pandoras-box",
"version": "1.1.2",
"description": "A small and simple stress testing tool for Ethereum-compatible blockchain networks",
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"author": "Milos Zivkovic (zivkovicmilos)",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"prettier": "3.2.5",
"typescript": "^5.0.2",
"typescript-eslint": "^7.5.0"
},
"scripts": {
"tsc": "tsc",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier --write .",
"build": "yarn tsc && yarn chmod",
"chmod": "chmod u+x ./bin/index.js",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn prettier"
},
"bin": {
"pandoras-box": "./bin/index.js"
},
"keywords": [
"pandora",
"pandoras box",
"pandoras-box",
"ethereum",
"stress test"
],
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@types/cli-table": "^0.3.1",
"@types/heap": "^0.2.31",
"axios": "^1.2.1",
"chalk": "4.1.2",
"cli-progress": "^3.11.2",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"heap": "^0.2.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madz-lab/pandoras-box.git"
},
"homepage": "https://docs.madz-lab.com/pandoras-box",
"files": [
"bin/**/*"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}