@bitgo/account-lib 2.20.0-rc.5 → 2.20.0-rc.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/browser/bitgo-account-lib.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1007 -47
- package/package.json +7 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo/account-lib",
|
|
3
|
-
"version": "2.20.0-rc.
|
|
3
|
+
"version": "2.20.0-rc.6",
|
|
4
4
|
"description": "BitGo's account library functions",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"hedera-gen-protobufts": "pbts -o ./resources/hbar/protobuf/hedera.d.ts ./resources/hbar/protobuf/hedera.js",
|
|
20
20
|
"lint": "eslint --quiet 'src/**/*.ts' 'test/**/*.ts'",
|
|
21
21
|
"lint-fix": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
|
|
22
|
+
"precommit": "yarn lint-staged",
|
|
22
23
|
"prepublishOnly": "npm run compile",
|
|
23
24
|
"prepare": "npm run gen-protobuf && npm run gen-protobufts && npm run hedera-gen-protobuf && npm run hedera-gen-protobufts && npm run build-ts && cp -r ./resources ./dist",
|
|
24
25
|
"build-ts": "yarn tsc --build --incremental --verbose .",
|
|
@@ -40,7 +41,7 @@
|
|
|
40
41
|
"@bitgo/blake2b": "^3.0.2",
|
|
41
42
|
"@bitgo/bls": "^0.1.0",
|
|
42
43
|
"@bitgo/bls-dkg": "^1.1.0-rc.0",
|
|
43
|
-
"@bitgo/statics": "^6.18.0-rc.
|
|
44
|
+
"@bitgo/statics": "^6.18.0-rc.6",
|
|
44
45
|
"@celo/contractkit": "^1.2.4",
|
|
45
46
|
"@ethereumjs/common": "^2.4.0",
|
|
46
47
|
"@ethereumjs/tx": "^3.3.0",
|
|
@@ -95,7 +96,6 @@
|
|
|
95
96
|
"eslint-plugin-jsdoc": "^33.0.0",
|
|
96
97
|
"glob": "^7.1.3",
|
|
97
98
|
"https-browserify": "^1.0.0",
|
|
98
|
-
"lint-staged": "^8.1.4",
|
|
99
99
|
"nyc": "^15.0.0",
|
|
100
100
|
"process": "^0.11.10",
|
|
101
101
|
"should": "^13.1.3",
|
|
@@ -113,19 +113,14 @@
|
|
|
113
113
|
"src/**/*.ts"
|
|
114
114
|
]
|
|
115
115
|
},
|
|
116
|
-
"husky": {
|
|
117
|
-
"hooks": {
|
|
118
|
-
"pre-commit": "lint-staged"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
116
|
"lint-staged": {
|
|
122
|
-
"*.{js,ts
|
|
123
|
-
"
|
|
124
|
-
"
|
|
117
|
+
"*.{js,ts}": [
|
|
118
|
+
"yarn prettier --write",
|
|
119
|
+
"yarn eslint --fix"
|
|
125
120
|
]
|
|
126
121
|
},
|
|
127
122
|
"publishConfig": {
|
|
128
123
|
"access": "public"
|
|
129
124
|
},
|
|
130
|
-
"gitHead": "
|
|
125
|
+
"gitHead": "cd5f225f2ede1e62d00b2ac84d91c35cb3d4d222"
|
|
131
126
|
}
|