@bitgo/sdk-api 1.0.1-dev.0

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.
@@ -0,0 +1,32 @@
1
+ /*!
2
+ * The buffer module from node.js, for the browser.
3
+ *
4
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
5
+ * @license MIT
6
+ */
7
+
8
+ /*!
9
+ * The buffer module from node.js, for the browser.
10
+ *
11
+ * @author Feross Aboukhadijeh <https://feross.org>
12
+ * @license MIT
13
+ */
14
+
15
+ /*! https://mths.be/punycode v1.3.2 by @mathias */
16
+
17
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
18
+
19
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
20
+
21
+ /**
22
+ * @license
23
+ * Lodash <https://lodash.com/>
24
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
25
+ * Released under MIT license <https://lodash.com/license>
26
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
27
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
28
+ */
29
+
30
+ //! moment.js
31
+
32
+ //! moment.js locale configuration
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@bitgo/sdk-api",
3
+ "version": "1.0.1-dev.0",
4
+ "description": "REST wrapper for BitGoJS",
5
+ "main": "./dist/src/index.js",
6
+ "web": "./dist/web/main.js",
7
+ "types": "./dist/src/index.d.ts",
8
+ "scripts": {
9
+ "build": "yarn tsc --build --incremental --verbose .",
10
+ "fmt": "prettier --write .",
11
+ "check-fmt": "prettier --check .",
12
+ "clean": "rm -r ./dist",
13
+ "precommit": "lint-staged",
14
+ "prepare": "npm run build",
15
+ "build-web": "webpack",
16
+ "build-web-prod": "webpack --mode=production --node-env=production",
17
+ "prepublishOnly": "npm run build-web-prod"
18
+ },
19
+ "author": "BitGo Inc.",
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/BitGo/BitGoJS.git",
24
+ "directory": "modules/statics"
25
+ },
26
+ "husky": {
27
+ "hooks": {
28
+ "pre-commit": "lint-staged"
29
+ }
30
+ },
31
+ "lint-staged": {
32
+ "**/*.ts": [
33
+ "prettier --write",
34
+ "git add"
35
+ ]
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "nyc": {
41
+ "extension": [
42
+ ".ts"
43
+ ]
44
+ },
45
+ "dependencies": {
46
+ "@bitgo/sdk-core": "^1.0.1-dev.0",
47
+ "@bitgo/sjcl": "^1.0.1-dev.0",
48
+ "@bitgo/utxo-lib": "^2.2.2-dev.0",
49
+ "@types/superagent": "4.1.15",
50
+ "debug": "3.1.0",
51
+ "sanitize-html": "^1.27.5",
52
+ "superagent": "3.8.3",
53
+ "superagent-proxy": "3.0.0"
54
+ },
55
+ "devDependencies": {
56
+ "@babel/core": "^7.17.8",
57
+ "@babel/preset-env": "^7.16.11",
58
+ "@webpack-cli/generators": "^2.4.2",
59
+ "babel-loader": "^8.2.4",
60
+ "html-webpack-plugin": "^5.5.0",
61
+ "webpack": "^5.70.0",
62
+ "webpack-cli": "^4.9.2",
63
+ "webpack-dev-server": "^4.7.4"
64
+ },
65
+ "gitHead": "e9d78e8064169cd03f12c111af18603de5c29e1b"
66
+ }