-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.15 KB
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
{
"name": "@bitpay-labs/bitcore-cli",
"description": "A Bitcore CLI Wallet",
"author": "BitPay, Inc",
"version": "11.10.2",
"licence": "MIT",
"private": true,
"keywords": [
"bitcoin",
"multisig",
"thresholdsig",
"tss",
"wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore/tree/master/packages/bitcore-cli"
},
"bugs": {
"url": "https://github.com/bitpay/bitcore/issues"
},
"contributors": [
{
"name": "Kenny Joseph",
"email": "kjoseph@bitpay.com"
}
],
"bin": {
"bitcore-cli": "./bin/bitcore-cli"
},
"scripts": {
"test": "npm run compile && node copyTestWallets && mocha --exit 'build/test/**/*.js'",
"coverage": "npm run compile && node copyTestWallets && nyc mocha --exit 'build/test/**/*.js'",
"build": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"postbuild": "node createBin -v",
"postbuild:prod": "npm run postbuild",
"clean": "rm -rf ./build",
"compile": "npm run clean && npm run build",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
"fix:all": "eslint --fix .",
"fix": "npm run fix:errors",
"precommit": "npm run lint"
},
"dependencies": {
"@bitpay-labs/bitcore-mnemonic": "^11.9.0",
"@bitpay-labs/bitcore-wallet-client": "^11.10.2",
"@bitpay-labs/crypto-wallet-core": "^11.10.0",
"@clack/prompts": "1.0.0-alpha.6",
"commander": "14.0.0",
"external-editor": "3.1.0",
"usb": "2.15.0"
},
"devDependencies": {
"@bitpay-labs/bitcore-wallet-service": "^11.10.2",
"@types/chai": "5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.14.1",
"chai": "^5.2.1",
"mocha": "^11.7.1",
"mongodb": "^3.5.9",
"nyc": "^17.1.0",
"sinon": "^21.0.0",
"source-map-support": "0.5.16",
"supertest": "^7.2.2",
"typescript": "^5.8.3"
},
"nyc": {
"include": [
"build/src",
"src"
],
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"lines": 60,
"functions": 60,
"branches": 60,
"statements": 60
},
"gitHead": "d1c7f8b0c3a2e4f5b6c7d8e9f0a1b2c3d4e5f6g7"
}