forked from cavanmflynn/ethers-multicall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.17 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
{
"name": "ethers-multicall",
"version": "0.2.1",
"description": "Make multiple Ethereum network requests in a single HTTP query. ethcall for ethers v5.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r @ts-tools/node \"test/**/*.test.ts\"",
"build": "tsc",
"lint": "tslint -c tslint.json '{src,test}/**/*.ts' --fix",
"prepublishOnly": "yarn build && yarn test && yarn lint"
},
"keywords": [
"ethers",
"multicall"
],
"author": "Cavan Flynn <cavan.m.flynn@gmail.com>",
"license": "MIT",
"devDependencies": {
"@ts-tools/node": "^0.8.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"tslint": "^5.12.0",
"typescript": "^4.2.4"
},
"dependencies": {
"ethers": "^5.0.0"
},
"peerDependencies": {
"ethers": "^5.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cavanmflynn/ethers-multicall.git"
},
"bugs": {
"url": "https://github.com/cavanmflynn/ethers-multicall/issues"
},
"homepage": "https://github.com/cavanmflynn/ethers-multicall#readme"
}