forked from BitGo/bitgo-cli-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "bitgo-cli-v2",
"version": "0.10.1",
"description": "A command line tool to use BitGo's wallets with",
"author": "BitGo Inc.",
"license": "Apache-2.0",
"main": "src/index.js",
"bin": {
"bgo": "bin/bgo"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/_mocha -t 50000 --recursive ./test --no-color",
"lint": "./node_modules/.bin/eslint --ext .js ."
},
"repository": {
"type": "git",
"url": "git://github.com/BitGo/bitgo-cli-v2.git"
},
"bugs": {
"url": "https://github.com/BitGo/bitgo-cli-v2/issues"
},
"homepage": "https://github.com/BitGo/bitgo-cli-v2",
"keywords": [
"bitgo",
"bitcoin"
],
"engines": {
"node": ">=6.9.5",
"npm": ">=3.10.0"
},
"dependencies": {
"argparse": "1.0.9",
"bignumber.js": "~6.0.0",
"bitgo": "^7.0.0",
"bluebird": "~3.5.1",
"colors": "~1.1.2",
"columnify": "~1.5.4",
"external-ip": "~1.3.1",
"lodash": "~4.17.5",
"moment": "~2.20.1",
"q": "~1.5.1",
"read": "~1.0.7",
"underscore.string": "~3.3.4"
},
"devDependencies": {
"eslint": "~4.18.1",
"intercept-stdout": "~0.1.2",
"mocha": "~5.0.1",
"nock": "~9.2.3",
"should": "~13.2.1"
}
}