-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 KB
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
{
"name": "@bitgo/abstract-eth",
"version": "24.20.2",
"description": "BitGo SDK coin library for ETH base implementation",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "yarn tsc --build --incremental --verbose .",
"fmt": "prettier --write .",
"check-fmt": "prettier --check '**/*.{ts,js,json}'",
"clean": "rm -r ./dist",
"lint": "eslint --quiet .",
"prepare": "npm run build",
"test": "npm run coverage",
"coverage": "nyc -- npm run unit-test",
"unit-test": "mocha"
},
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
"license": "MIT",
"engines": {
"node": ">=20 <25"
},
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/abstract-eth"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@bitgo/sdk-core": "^36.31.1",
"@bitgo/sdk-lib-mpc": "^10.9.0",
"@bitgo/secp256k1": "^1.10.0",
"@bitgo/statics": "^58.25.0",
"@ethereumjs/common": "^2.6.5",
"@ethereumjs/rlp": "^4.0.0",
"@ethereumjs/tx": "^3.3.0",
"@metamask/eth-sig-util": "^5.0.2",
"bignumber.js": "^9.1.1",
"bn.js": "^5.2.1",
"debug": "^3.1.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "7.1.5",
"ethers": "^5.1.3",
"keccak": "^3.0.3",
"lodash": "4.17.23",
"secp256k1": "5.0.1",
"superagent": "^9.0.1"
},
"devDependencies": {
"@bitgo/sdk-api": "^1.74.1",
"@bitgo/sdk-test": "^9.1.27",
"@types/keccak": "^3.0.5"
},
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c",
"files": [
"dist"
]
}