-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "pocketh",
"version": "0.1.66",
"description": "A pocket knife for auditing smart contracts.",
"main": "src/program.js",
"bin": {
"pocketh": "src/program.js"
},
"scripts": {
"ganache": "ganache-cli --deterministic",
"test": "jest --verbose",
"testwatch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajsantander/awesome-eth-tools.git"
},
"keywords": [
"ethereum",
"solidity",
"smart contracts",
"audit",
"tools"
],
"author": "ajsantander",
"license": "ISC",
"bugs": {
"url": "https://github.com/ajsantander/awesome-eth-tools/issues"
},
"homepage": "https://github.com/ajsantander/awesome-eth-tools#readme",
"dependencies": {
"axios": "^0.18.0",
"bn.js": "^4.11.8",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"ethers": "^4.0.47",
"figlet": "^1.2.1",
"find-node-modules": "^2.0.0",
"semver": "^6.1.0",
"solc": "^0.5.8",
"tmp": "^0.1.0",
"treeify": "^1.1.0",
"web3": "1.0.0-beta.37"
},
"devDependencies": {
"ganache-cli": "^6.4.3",
"jest": "^24.8.0"
},
"jest": {
"setupFilesAfterEnv": [
"./test/setup.js"
]
}
}