-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@defifofum/multicall",
"version": "1.2.1",
"description": "Typescript package used to batch smart contract read calls into a single tx through the use of a multicall contract.",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "yarn test",
"compile": "truffle compile",
"compile:all": "truffle compile --all",
"migrate:dev": "truffle migrate --network development --reset",
"migrate:bsc": "truffle migrate --network bsc",
"migrate:bsc-testnet": "truffle migrate --network bsc-testnet",
"migrate:polygon": "truffle migrate --network polygon",
"migrate:polygon-testnet": "truffle migrate --network polygon-testnet",
"verify:bsc": "truffle run verify Multicall --network bsc",
"verify:bsc-testnet": "truffle run verify Multicall --network bsc-testnet",
"verify:polygon": "truffle run verify Multicall --network polygon",
"verify:polygon-testnet": "truffle run verify Multicall --network polygon-testnet",
"build": "tsc",
"watch": "tsc-watch --onSuccess \"node ./dist/demo.js\"",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"example": "yarn build && ts-node ./examples/multicallDynamicAbi.ts"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint . --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeFiFoFum/multicall.git"
},
"keywords": [
"typescript",
"solidity",
"ethereum",
"binance",
"smart",
"chain",
"polygon"
],
"author": "DeFiFoFum",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/DeFiFoFum/multicall/issues"
},
"homepage": "https://github.com/DeFiFoFum/multicall#readme",
"resolutions": {
"async": "^2.6.4",
"axios": "^0.21.2",
"marked": "4.0.10",
"node-forge": "^1.3.0",
"concat-stream": "^1.5.2",
"cross-fetch": "^2.2.6",
"braces": "^2.3.1",
"lodash.template": "^4.5.0",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"glob-parent": "^5.1.2",
"yargs-parser": "^5.0.1",
"nth-check": "2.0.1",
"ansi-regex": "^5.0.1",
"simple-get": "^2.8.2",
"follow-redirects": "^1.14.8",
"protobufjs": "^6.11.3",
"got": "^11.8.5",
"jsdom": "^16.5.0",
"flat": "^5.0.1",
"minimatch": "^3.0.5",
"cookiejar": "^2.1.4",
"http-cache-semantics": "^4.1.1",
"json5": "^2.2.2",
"lint-staged": "^0.2.1"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^2.0.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"truffle": "^5.4.26",
"truffle-plugin-verify": "^0.5.20",
"ts-jest": "^27.0.4",
"ts-node": "^10.4.0",
"tsc-watch": "^4.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"ethers": "^5.4.4"
}
}