-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.2 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@bitgo/sdk-core",
"version": "36.25.0",
"description": "core library functions for BitGoJS",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "yarn unit-test",
"unit-test": "nyc -- mocha --recursive test",
"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:watch": " mocha -r tsx --watch --watch-files test/**/*.ts"
},
"author": "BitGo SDK Team <sdkteam@bitgo.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git",
"directory": "modules/sdk-core"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"@bitgo/public-types": "5.63.0",
"@bitgo/sdk-lib-mpc": "^10.8.1",
"@bitgo/secp256k1": "^1.8.0",
"@bitgo/sjcl": "^1.0.1",
"@bitgo/statics": "^58.19.0",
"@bitgo/utxo-core": "^1.28.0",
"@bitgo/utxo-lib": "^11.19.0",
"@noble/curves": "1.8.1",
"@stablelib/hex": "^1.0.0",
"@types/superagent": "4.1.15",
"big.js": "^3.1.3",
"bigint-crypto-utils": "3.1.4",
"bignumber.js": "^9.1.1",
"bs58": "^4.0.1",
"create-hmac": "^1.1.7",
"debug": "^3.1.0",
"ethereumjs-util": "7.1.5",
"fp-ts": "^2.12.2",
"io-ts": "npm:@bitgo-forks/io-ts@2.1.4",
"io-ts-types": "^0.5.16",
"keccak": "3.0.3",
"libsodium-wrappers-sumo": "^0.7.9",
"lodash": "^4.17.15",
"noble-bls12-381": "0.7.2",
"openpgp": "5.11.3",
"paillier-bigint": "3.3.0",
"secp256k1": "5.0.1",
"strip-hex-prefix": "^1.0.0",
"superagent": "^9.0.1",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@bitgo/sdk-opensslbytes": "^2.1.0",
"@openpgp/web-stream-tools": "0.0.14",
"@types/keccak": "^3.0.5",
"@types/lodash": "^4.14.151",
"nyc": "^15.0.0"
},
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"
}