forked from cgewecke/eth-gas-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "eth-gas-reporter",
"version": "0.2.27",
"description": "Mocha reporter which shows gas used per unit test.",
"main": "index.js",
"scripts": {
"geth": "./scripts/geth.sh",
"test": "./mock/scripts/test.sh",
"ci": "./scripts/ci.sh"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/cgewecke/eth-gas-reporter.git"
},
"keywords": [
"Ethereum",
"solidity",
"unit-testing",
"truffle",
"gas."
],
"author": "cgewecke <github.com/cgewecke>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cgewecke/eth-gas-reporter/issues"
},
"homepage": "https://github.com/cgewecke/eth-gas-reporter#readme",
"peerDependencies": {
"@codechecks/client": "^0.0.50"
},
"peerDependenciesMeta": {
"@codechecks/client": {
"optional": true
}
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@solidity-parser/parser": "^0.16.0",
"cli-table3": "^0.6.3",
"colors": "1.4.0",
"ethereum-cryptography": "^1.2.0",
"ethers": "^6.2.0",
"fs-readdir-recursive": "^1.1.0",
"lodash": "^4.17.21",
"markdown-table": "^3.0.3",
"mocha": "^10.2.0",
"req-cwd": "^2.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.9",
"sha1": "^1.1.1",
"sync-request": "^6.1.0"
},
"devDependencies": {
"@codechecks/client": "^0.1.12",
"fp-ts": "^2.13.1",
"ganache": "^7.7.7",
"geth-dev-assistant": "^0.1.8",
"hardhat": "^2.13.0",
"husky": "^8.0.3",
"prettier": "2.8.6",
"pretty-quick": "^3.1.3",
"randomstring": "^1.2.3",
"web3": "^1.9.0"
},
"overrides": {
"geth-dev-assistant": {
"yargs": {
".": "17.7.1",
"y18n": "5.0.1"
}
},
"mocha": {
"yargs": "17.7.1"
},
"cli-table3": {
"string-width": {
"strip-ansi": {
".": "7.0.1",
"ansi-regex": "6.0.1"
}
}
},
"@codechecks/client": {
"marked": "4.3.0"
},
"marked-terminal": {
"marked": "4.3.0"
},
"marked": "4.3.0"
}
}