forked from ethereum-optimism/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "@eth-optimism/plugins",
"version": "0.0.19",
"main": "index.js",
"types": "index.d.ts",
"files": [
"hardhat/",
"ganache/",
"waffle/",
"utils/",
"*.d.ts",
"*.d.ts.map",
"*.js",
"*.js.map",
"LICENSE",
"README.md"
],
"license": "MIT",
"scripts": {
"build": "yarn clean && tsc --build src",
"clean": "rimraf hardhat ganache waffle utils *.d.ts *.map *.js tsconfig.tsbuildinfo",
"lint": "yarn run lint:typescript",
"lint:typescript": "tslint --format stylish --project .",
"lint:fix": "yarn run lint:fix:typescript",
"lint:fix:typescript": "prettier --config prettier-config.json --write \"{src,test}/**/*.ts\""
},
"dependencies": {
"@eth-optimism/contracts": "^0.1.10",
"@eth-optimism/ethereumjs-vm": "^4.2.0-alpha.3",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"bn.js": "^5.1.3",
"ethereumjs-account": "^3.0.0",
"ethers": "^5.0.31",
"ethjs-common-v1": "npm:ethereumjs-common@1.5.0",
"ethjs-util-v6": "npm:ethereumjs-util@6.2.1",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.0.0"
},
"devDependencies": {
"@eth-optimism/dev": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.19",
"@types/node-fetch": "^2.5.8",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"hardhat": "^2.0.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "~4.0.3"
}
}