forked from ethereum-optimism/smock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "@eth-optimism/smock",
"version": "1.0.0-alpha.7",
"main": "build/src/index.js",
"license": "MIT",
"scripts": {
"build": "tsc -p .",
"test": "npx hardhat test --show-stack-traces",
"lint": "yarn lint:fix && yarn lint:check",
"lint:check": "npx tslint --format stylish --project .",
"lint:fix": "npx prettier --config ./prettier-config.json --write \"hardhat.config.ts\" \"{src,test}/**/*.ts\"",
"clean": "rimraf ./artifacts ./cache ./build"
},
"peerDependencies": {
"@nomiclabs/ethereumjs-vm": "^4",
"@nomiclabs/hardhat-ethers": "^2",
"ethers": "^5",
"hardhat": "^2"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.1.10",
"@ethersproject/abi": "^5.0.13",
"@ethersproject/abstract-provider": "^5.0.10",
"bn.js": "^5.2.0"
},
"devDependencies": {
"@nomiclabs/ethereumjs-vm": "4.2.2",
"@eth-optimism/dev": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/lodash": "^4.14.161",
"chai": "^4.3.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.32",
"glob": "^7.1.6",
"hardhat": "^2.1.1",
"lodash": "^4.17.20",
"prettier": "^2.2.1"
}
}