@bitgo/sdk-api 1.0.1-dev.1 → 1.0.1

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.
@@ -26,7 +26,3 @@
26
26
  * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
27
27
  * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
28
28
  */
29
-
30
- //! moment.js
31
-
32
- //! moment.js locale configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/sdk-api",
3
- "version": "1.0.1-dev.1",
3
+ "version": "1.0.1",
4
4
  "description": "REST wrapper for BitGoJS",
5
5
  "main": "./dist/src/index.js",
6
6
  "web": "./dist/web/main.js",
@@ -10,17 +10,19 @@
10
10
  "fmt": "prettier --write .",
11
11
  "check-fmt": "prettier --check .",
12
12
  "clean": "rm -r ./dist",
13
+ "lint": "eslint --quiet .",
13
14
  "precommit": "lint-staged",
14
15
  "prepare": "npm run build",
15
16
  "webpack-dev": "webpack",
16
- "webpack-prod": "webpack --mode=production --node-env=production"
17
+ "webpack-prod": "webpack --mode=production --node-env=production",
18
+ "prepublishOnly": "npm run webpack-prod"
17
19
  },
18
20
  "author": "BitGo Inc.",
19
21
  "license": "MIT",
20
22
  "repository": {
21
23
  "type": "git",
22
24
  "url": "https://github.com/BitGo/BitGoJS.git",
23
- "directory": "modules/statics"
25
+ "directory": "modules/sdk-api"
24
26
  },
25
27
  "husky": {
26
28
  "hooks": {
@@ -42,11 +44,13 @@
42
44
  ]
43
45
  },
44
46
  "dependencies": {
45
- "@bitgo/sdk-core": "^1.0.1-dev.1",
46
- "@bitgo/sjcl": "^1.0.1-dev.1",
47
- "@bitgo/utxo-lib": "^2.2.2-dev.1",
47
+ "@bitgo/sdk-core": "^1.0.1",
48
+ "@bitgo/sjcl": "^1.0.1",
49
+ "@bitgo/utxo-lib": "^2.2.1",
48
50
  "@types/superagent": "4.1.15",
49
51
  "bip32": "^2.0.6",
52
+ "bitcoinjs-message": "^2.0.0",
53
+ "bs58": "^2.0.1",
50
54
  "debug": "3.1.0",
51
55
  "sanitize-html": "^1.27.5",
52
56
  "secp256k1": "^4.0.2",
@@ -62,5 +66,6 @@
62
66
  "process": "^0.11.10",
63
67
  "webpack": "5.66.0",
64
68
  "webpack-cli": "4.9.1"
65
- }
69
+ },
70
+ "gitHead": "321f96e8abb546d18c046f224d1f082319e4b38f"
66
71
  }