forked from makerdao/multicall.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.19 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
{
"name": "@guildxyz/multicall",
"version": "0.12.0",
"description": "A blockchain state management library for dapps.",
"contributors": [
"Michael Elliot <[email protected]>",
"Joshua Levine <[email protected]>",
"Lawrence Wang <[email protected]>"
],
"license": "MIT",
"keywords": [
"multicall",
"makerdao"
],
"homepage": "https://github.com/agoraxyz/multicall.js#readme",
"bugs": {
"url": "https://github.com/agoraxyz/multicall.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/agoraxyz/multicall.js.git"
},
"main": "dist/multicall.cjs.js",
"types": "types/multicall.d.ts",
"module": "dist/multicall.esm.js",
"unpkg": "dist/multicall.umd.js",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"watch": "rollup -w -c",
"example": "cross-env DEBUG=multicall babel-node --plugins @babel/plugin-transform-modules-commonjs examples/es-example.js",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"prepublishOnly": "yarn test && yarn clean && yarn build"
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"cross-fetch": "^3.0.4",
"debug": "^4.1.1",
"ethers": "^4.0.27",
"invariant": "^2.2.4",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.11",
"ws": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.6.0",
"babel-jest": "^24.9.0",
"bignumber.js": "^9.0.0",
"cross-env": "^5.2.1",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"jest-websocket-mock": "^2.0.0",
"mock-socket": "^9.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"sideEffects": false
}