forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "@eth-optimism/smock",
"files": [
"dist/src/*"
],
"version": "1.1.3",
"main": "dist/src/index",
"types": "dist/src/index",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "hardhat test --show-stack-traces",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config ./.prettierrc.json --write \"hardhat.config.ts\" \"{src,test}/**/*.ts\"",
"lint:check": "tslint --format stylish --project .",
"clean": "rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo"
},
"peerDependencies": {
"@nomiclabs/ethereumjs-vm": "^4",
"@nomiclabs/hardhat-ethers": "^2",
"ethers": "^5",
"hardhat": "^2.2.1"
},
"dependencies": {
"@eth-optimism/core-utils": "^0.4.1",
"@ethersproject/abi": "^5.0.13",
"@ethersproject/abstract-provider": "^5.0.10",
"bn.js": "^5.2.0"
},
"devDependencies": {
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.17",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.161",
"@types/prettier": "^2.2.3",
"chai": "^4.3.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.31",
"hardhat": "^2.2.1",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-focused-test": "^0.5.0",
"tslint-plugin-prettier": "^2.3.0"
}
}