forked from stryke-xyz/web3-multicall
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@hashex/web3-multicall",
"version": "0.0.6",
"description": "A library to do multiple calls via a single eth_call using web3.",
"main": "dist/index.js",
"source": "src/index.ts",
"author": {
"name": "hashex",
"email": "[email protected]",
"url": "https://github.com/hashex"
},
"repository": {
"type": "git",
"url": "https://github.com/hashex/web3-multicall"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"prepare": "yarn build",
"lint": "eslint src",
"test": "nyc ./node_modules/.bin/_mocha 'test/**/*.test.ts'"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@testdeck/mocha": "^0.2.0",
"@types/chai": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"microbundle": "^0.13.3",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"ts-node": "^10.7.0",
"typescript": "^4.4.3"
},
"dependencies": {
"web3": "^1.6.0"
},
"prettier": {
"singleQuote": true
}
}