-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"name": "@indexed-finance/multicall",
"version": "2.0.0",
"description": "Solidity contract and typescript library for static multi-calls",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.19",
"hardhat": "^2.0.2",
"mocha": "^8.2.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"web3": "^1.3.0"
},
"peerDependencies": {
"ethers": "^5.0.0"
},
"scripts": {
"compile": "hardhat compile",
"prebuild": "npm run compile && rimraf ./dist && node ./copy-bytecode.js",
"build": "tsc -p tsconfig.build.json",
"test": "hardhat test",
"prepublish": "npm run build"
},
"keywords": [
"Solidity",
"Ethereum"
],
"author": "",
"license": "MIT"
}