-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
{
"name": "@tomfrench/matic-proofs",
"version": "0.3.2",
"description": "Package to generate the required proofs to exit funds from Matic Network",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "hardhat compile",
"clean": "shx rm -rf ./lib",
"test": "hardhat test",
"build": "yarn clean && tsc -p tsconfig.production.json",
"lint": "eslint src/**/*.ts test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomAFrench/matic-proofs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TomAFrench/matic-proofs/issues"
},
"homepage": "https://github.com/TomAFrench/matic-proofs#readme",
"devDependencies": {
"@ethereum-waffle/chai": "^3.2.2",
"@ethersproject/abi": "^5.0.5",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.9",
"@ethersproject/constants": "^5.0.5",
"@ethersproject/contracts": "^5.0.4",
"@ethersproject/providers": "^5.0.9",
"@ethersproject/rlp": "^5.0.7",
"@ethersproject/solidity": "^5.0.5",
"@openzeppelin/contracts": "3.1.0",
"@types/bluebird": "^3.5.32",
"@types/chai": "^4.2.14",
"@types/isomorphic-fetch": "^0.0.35",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript-prettier": "^3.1.0",
"eth-json-rpc-filters": "^4.1.1",
"ethers": "^5.0.26",
"hardhat": "^2.0.8",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"shx": "^0.3.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
},
"dependencies": {
"bluebird": "^3.7.2",
"ethereumjs-util": "^7.0.5",
"isomorphic-fetch": "^3.0.0",
"merkle-patricia-tree": "^4.0.0"
},
"peerDependencies": {
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.9",
"@ethersproject/constants": "^5.0.5",
"@ethersproject/contracts": "^5.0.4",
"@ethersproject/providers": "^5.0.9",
"@ethersproject/rlp": "^5.0.7",
"@ethersproject/solidity": "^5.0.5"
}
}