-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "truffle-troubleshoot",
"version": "0.1.0",
"description": "A Truffle plugin to troubleshoot your smart contract problems",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IoBuilders/truffle-troubleshoot.git"
},
"keywords": [
"solidity",
"truffle",
"plugin",
"troubleshoot",
"debug",
"failed",
"revert",
"buidl"
],
"author": "tech@io.builders",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IoBuilders/truffle-troubleshoot/issues"
},
"homepage": "https://github.com/IoBuilders/truffle-troubleshoot#readme",
"dependencies": {
"axios": "^0.19.0",
"chalk": "^3.0.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^6.2.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0"
},
"peerDependencies": {
"web3": "1.x"
}
}