-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.71 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
{
"name": "@pooltogether/etherplex",
"version": "1.1.5",
"description": "Multicall with Ethers.js",
"main": "dist/index.js",
"browser": "dist/index.js",
"types": "src/index.ts",
"repository": "https://github.com/pooltogether/etherplex",
"author": "Brendan Asselstine <brendan@pooltogether.us>",
"license": "MIT",
"scripts": {
"test": "jest -w 1",
"dist": "rollup -c rollup.config.js",
"dist-clean": "rm -rf _virtual abis index.js typeDefs.js Call.js MulticallContract.js MulticallExecutor.js batch.js contract.js decodeCalls.js encodeCalls.js",
"watch": "rollup -w -c rollup.config.js",
"coverage": "jest --coverage --coverageReporters html",
"test-watch": "jest --watchAll",
"docs": "typedoc src",
"prepack": "yarn dist",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"directories": {
"lib": "dist",
"src": "src"
},
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.15",
"lodash.merge": "^4.6.2",
"zen-observable-ts": "^0.8.20"
},
"peerDependencies": {
"@ethersproject/abi": "^5.1.0",
"ethers": "^5.0.31"
},
"devDependencies": {
"@ethersproject/abi": "^5.1.0",
"@types/jest": "^24.0.23",
"bufferutil": "^4.0.3",
"ethers": "^5.0.31",
"jest": "^24.9.0",
"jest-leak-detector": "^25.1.0",
"node-fetch": "^2.6.0",
"promise.allsettled": "^1.0.2",
"rollup": "^1.27.4",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.2.0",
"tslib": "^1.10.0",
"typedoc": "^0.15.3",
"typescript": "^3.7.2",
"utf-8-validate": "^5.0.4"
}
}