UNPKG

4.76 kBJSONView Raw
1{
2 "name": "bitgo",
3 "version": "11.18.0",
4 "description": "BitGo Javascript SDK",
5 "main": "./dist/src/index.js",
6 "types": "./dist/types/src/index.d.ts",
7 "keywords": [
8 "bitgo",
9 "bitcoin",
10 "bitgojs"
11 ],
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/BitGo/BitGoJS.git"
15 },
16 "license": "Apache-2.0",
17 "engines": {
18 "node": ">=10.22.0 <16",
19 "npm": ">=3.10.10"
20 },
21 "scripts": {
22 "compile": "npm run webpack-prod",
23 "compile-dbg": "npm run webpack-dev",
24 "compile-test": "npm run webpack-test",
25 "webpack-dev": "webpack --progress --colors --env.dev",
26 "webpack-test": "webpack --progress --colors --env.test",
27 "webpack-prod": "webpack --progress --colors --env.prod",
28 "test": "npm run unit-test",
29 "unit-test": "nyc -- mocha --opts test/mocha.opts \"test/unit/*.ts\" \"test/unit/**/*.ts\" \"test/v2/unit/*.ts\" \"test/v2/unit/**/*.ts\"",
30 "integration-test": "nyc -- mocha --opts test/mocha.opts \"test/v2/integration/**/*.ts\"",
31 "browser-test": "karma start karma.conf.js",
32 "lint": "eslint 'src/**/*.ts' && eslint 'test/**/*.ts' || true",
33 "audit": "if [ \"$(npm --version | cut -d. -f1)\" -ge \"6\" ]; then npm audit; else echo \"npm >= 6 required to perform audit. skipping...\"; fi",
34 "clean": "rm -r dist/*",
35 "build": "tsc && node scripts/copySjcl.js",
36 "prepare": "npm run build",
37 "prepublishOnly": "npm run compile",
38 "upload-artifacts": "node scripts/upload-test-reports.js",
39 "check-fmt": "prettier --check '{src,test}/**/*.{ts,js,json}'",
40 "precommit": "lint-staged",
41 "unprettied": "grep -R -L --include '*.ts' --include '*.js' --include '*.json' '@prettier' src test",
42 "fmt": "prettier --write '{src,test}/**/*.{ts,js,json}'",
43 "upload-docs": "node scripts/upload-docs.js",
44 "gen-docs": "typedoc"
45 },
46 "dependencies": {
47 "@bitgo/account-lib": "^2.14.0",
48 "@bitgo/statics": "^6.11.0",
49 "@bitgo/unspents": "^0.6.0",
50 "@bitgo/utxo-lib": "^1.9.5",
51 "@types/bluebird": "^3.5.25",
52 "@types/superagent": "^4.1.3",
53 "algosdk": "git+https://github.com/BitGo/algosdk-bitgo.git",
54 "big.js": "^3.1.3",
55 "bigi": "^1.4.0",
56 "bignumber.js": "^8.0.1",
57 "bitcoinjs-message": "^2.0.0",
58 "bluebird": "^3.5.3",
59 "bs58": "^2.0.1",
60 "bs58check": "^1.0.4",
61 "cashaddress": "^1.1.0",
62 "create-hmac": "^1.1.7",
63 "debug": "^3.1.0",
64 "ecurve": "^1.0.6",
65 "eol": "^0.5.0",
66 "eosjs": "^16.0.8",
67 "eosjs-ecc": "^4.0.4",
68 "lodash": "^4.17.14",
69 "moment": "^2.20.1",
70 "prova-lib": "^0.2.10",
71 "ripple-address-codec": "^4.0.0",
72 "ripple-binary-codec": "^0.2.4",
73 "ripple-keypairs": "^0.11.0",
74 "ripple-lib": "^1.4.1",
75 "sanitize-html": "^1.27.5",
76 "secrets.js-grempe": "^1.1.0",
77 "stellar-sdk": "^8.1.0",
78 "superagent": "^3.8.3",
79 "superagent-proxy": "^2.1.0"
80 },
81 "devDependencies": {
82 "@types/create-hmac": "^1.1.0",
83 "@types/debug": "^4.1.4",
84 "@types/jasmine": "^3.5.12",
85 "@types/lodash": "^4.14.121",
86 "@types/mocha": "^5.2.6",
87 "@types/nock": "^9.3.1",
88 "@types/node": "^11.11.4",
89 "@types/secp256k1": "^4.0.1",
90 "@types/sinon": "^7.0.6",
91 "@types/stellar-sdk": "^0.11.1",
92 "awesome-typescript-loader": "^5.2.1",
93 "glob": "^7.1.3",
94 "html-webpack-plugin": "^3.2.0",
95 "karma": "^5.1.1",
96 "karma-chrome-launcher": "^3.1.0",
97 "karma-jasmine": "^4.0.0",
98 "karma-mocha": "^2.0.1",
99 "karma-typescript": "^5.0.3",
100 "lint-staged": "^8.1.4",
101 "minimist": "^1.2.5",
102 "mocha": "^7.0.0",
103 "mochawesome": "^5.0.0",
104 "nock": "=9.0.28",
105 "nyc": "^15.0.0",
106 "puppeteer": "2.1.1",
107 "q": "^1.1.2",
108 "request": "^2.88.0",
109 "request-promise": "^4.2.2",
110 "should": "^13.1.3",
111 "should-http": "^0.1.1",
112 "should-sinon": "^0.0.6",
113 "sinon": "^6.3.5",
114 "sjcl": "^1.0.8",
115 "supertest": "^3.0.0",
116 "terser": "^3.16.1",
117 "terser-webpack-plugin": "^1.2.3",
118 "webpack": "^4.29.6",
119 "webpack-cli": "^3.2.3"
120 },
121 "optionalDependencies": {
122 "ethereumjs-abi": "^0.6.5",
123 "ethereumjs-tx": "^1.3.7",
124 "ethereumjs-util": "^4.4.1",
125 "secp256k1": "^4.0.2"
126 },
127 "nyc": {
128 "extension": [
129 ".ts"
130 ]
131 },
132 "gitHead": "e9520e3ede58e70bbd3f2b38c31b0c8a721a28c3"
133}