-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 940 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 940 Bytes
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
{
"name": "eth-bytecode-verifier",
"version": "0.3.1",
"description": "The purpose of this tool is to verify that the Contract Source on etherscan matches the bytecode that's actually on the blockchain. If the code shown on etherscan does not match the blockchain, the tool will display a warning message.",
"main": "test.js",
"preferGlobal": true,
"bin": {
"ethv": "./index.js"
},
"scripts": {
"test": "mocha"
},
"author": "Alex Luoyuan Xiong",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.1",
"express": "^4.17.1",
"figlet": "^1.2.4",
"inquirer": "^7.0.0",
"jquery": "^3.4.1",
"jsdom": "^15.1.1",
"mongoose": "^5.7.0",
"solc": "^0.5.11",
"web3": "^1.2.1",
"web3-core-requestmanager": "^1.2.1"
},
"devDependencies": {
"gulp": "^4.0.2"
},
"repository": "https://github.com/ConsenSys/bytecode-verifier",
"private": null
}