-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "pandoras-box",
"version": "1.1.1",
"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": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "3.0.3",
"typescript": "^5.0.2"
},
"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": "5.3.0",
"cli-progress": "^3.11.2",
"cli-table3": "^0.6.3",
"commander": "^11.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/"
}
}