-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "hardhat-exposed",
"version": "0.3.15",
"description": "Automatically expose internal functions for smart contract testing",
"license": "MIT",
"author": "Francisco Giordano <[email protected]>",
"repository": "github:frangio/hardhat-exposed",
"main": "dist/plugin.js",
"files": [
"/dist",
"/src",
"!**/*.test.{js,d.ts}{,.map}",
"!**/*.tsbuildinfo"
],
"scripts": {
"clean": "rimraf dist",
"prepare": "npm run clean && tsc",
"test": "hardhat compile --force && ava",
"test:watch": "hardhat compile --force && ava --watch"
},
"dependencies": {
"micromatch": "^4.0.4",
"solidity-ast": "^0.4.52"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@types/micromatch": "^4.0.2",
"@types/mocha": "^8.0.0",
"@types/node": "^14.18.46",
"ava": "^4.0.1",
"ethers": "^5.5.4",
"hardhat": "^2.3.0",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.3.2",
"web3": "^1.3.6"
},
"peerDependencies": {
"hardhat": "^2.3.0"
}
}