-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 897 Bytes
/
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
{
"name": "muteswitch-sdk",
"version": "1.0.2",
"description": "SDK for the Mute Switch",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"test": "jest"
},
"author": "",
"license": "ISC",
"keywords": [
"ethereum",
"blockchain",
"muteswitch"
],
"dependencies": {
"bignumber.js": "^9.0.1",
"ethereum-multicall": "^2.7.0",
"ethers": "^5.0.26",
"node-fetch": "^2.6.1",
"rxjs": "^6.6.3",
"ethereum-abi-types-generator": "^1.1.6"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.6.2",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^4.1.3"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
]
}