forked from BitGo/BitGoJS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 3.8 KB
/
package.json
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "bitgo",
"version": "4.41.0",
"description": "BitGo Javascript SDK",
"main": "./src/index.js",
"keywords": [
"bitgo",
"bitcoin",
"bitgojs"
],
"repository": {
"type": "git",
"url": "https://github.com/BitGo/BitGoJS.git"
},
"engines": {
"node": ">=6.9.0",
"npm": ">=5.5.1"
},
"scripts": {
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov",
"babelify": "mkdir -p browser && ./node_modules/.bin/browserify ./src/index.js --exclude superagent-proxy --exclude morgan -t babelify -s BitGoJS -o browser/BitGoJS-babelify.js",
"browserify-sjcl-bitgo": "./node_modules/.bin/browserify ./example/sjcl_bitgo.js -s SJCLBitGo -o ./sjcl-bitgo.js",
"compile": "webpack --progress --colors --env.prod",
"compile-dbg": "webpack --progress --colors --env.dev",
"compile-test": "webpack --progress --colors --env.test",
"test": "npm run test-node",
"express": "node bin/bitgo-express -b 0.0.0.0",
"test-node": "./node_modules/.bin/nyc -- ./node_modules/.bin/_mocha --timeout 20000 --reporter list --recursive test/unit/ test/v2/unit/",
"test-browser": "npm run compile-test && ./node_modules/karma/bin/karma start .karma.conf.js --log-level debug --single-run",
"test-integration": "./node_modules/.bin/_mocha --timeout 20000 --reporter list --recursive test/integration/ test/v2/integration/",
"lint": "./node_modules/.bin/eslint --ext .js .",
"audit": "if [ \"$(npm --version | cut -d. -f1)\" -ge \"6\" ]; then npm audit; else echo \"npm >= 6 required to perform audit. skipping...\"; fi"
},
"dependencies": {
"argparse": "~1.0.10",
"assert": "0.4.9",
"big.js": "~3.1.3",
"bigi": "1.4.0",
"bignumber.js": "~4.0.2",
"bitcoinjs-message": "~2.0.0",
"bitgo-utxo-lib": "^1.2.1",
"bluebird": "~3.5.0",
"body-parser": "~1.18.2",
"bs58": "2.0.1",
"bs58check": "1.0.4",
"cashaddress": "1.1.0",
"create-hmac": "~1.1.4",
"debug": "~3.1.0",
"ecurve": "~1.0.2",
"eol": "0.5.0",
"express": "~4.16.2",
"http-proxy": "1.11.1",
"lodash": "~4.17.10",
"minimist": "0.2.0",
"moment": "~2.20.1",
"morgan": "1.9.0",
"prova-lib": "0.2.9",
"ripple-lib": "~0.22.0",
"sanitize-html": "1.13.0",
"secrets.js-grempe": "1.1.0",
"stellar-sdk": "~0.11.0",
"superagent": "~3.8.3",
"superagent-proxy": "~1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"browserify": "~16.1.1",
"bufferutil": "~3.0.5",
"eslint": "^4.17.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "~0.1.7",
"karma-mocha": "~0.1.10",
"mocha": "^4.0.1",
"mocha-junit-reporter": "~1.17.0",
"mocha-lcov-reporter": "0.0.2",
"nock": "~9.0.13",
"nyc": "^13.0.1",
"q": "1.1.2",
"request": "^2.88.0",
"request-promise": "~4.2.2",
"should": "11.2.x",
"should-http": "^0.1.1",
"should-sinon": "^0.0.6",
"sinon": "^6.1.6",
"sjcl": "~1.0.7",
"supertest": "~3.0.0",
"supertest-as-promised": "https://github.com/BitGo/supertest-as-promised/archive/a7f4b612b9fa090ae33a9616c41862aec2b25c7e.tar.gz",
"uglify-js": "3.0.15",
"uglifyjs-webpack-plugin": "^1.0.1",
"utf-8-validate": "~4.0.2",
"webpack": "^3.8.1"
},
"optionalDependencies": {
"ethereumjs-abi": "~0.6.2",
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "~4.4.1",
"secp256k1": "3.2.5"
},
"testling": {
"browsers": [
"chrome/latest",
"firefox/latest",
"safari/latest",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/4.2..latest"
],
"harness": "mocha",
"files": [
"test/*.js",
"test/bitcoin/*.js"
]
}
}