-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.41 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.41 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
86
87
88
{
"name": "@bitpay-labs/bitcore-client",
"description": "Wallet client for Bitcore-Node",
"version": "11.8.1",
"author": "Justin Langston <[email protected]>",
"main": "./ts_build/src/index.js",
"types": "./ts_build/src/index.d.ts",
"bin": {
"bitcore-client": "./bin/wallet"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore/tree/master/packages/bitcore-client"
},
"scripts": {
"build": "tsc",
"build:prod": "tsc -p tsconfig.prod.json",
"clean": "rm -rf ./ts_build",
"pub": "npm run compile && npm publish",
"watch": "tsc --watch",
"precompile": "cd ../bitcore-node && npm run clean && npm run build:prod",
"compile": "npm run clean && npm run build",
"test": "npm run compile && mocha -r tsx --exit 'test/**/*.test.ts'",
"coverage": "npm run compile && nyc mocha -r tsx --exit 'test/**/*.test.ts'",
"precommit": "npm run lint",
"lint": "eslint .",
"fix:errors": "eslint --fix --quiet .",
"fix:all": "eslint --fix .",
"fix": "npm run fix:errors"
},
"dependencies": {
"@bitpay-labs/bitcore-mnemonic": "^11.8.1",
"@bitpay-labs/crypto-wallet-core": "^11.8.1",
"async": "2.5.0",
"bcrypt": "5.1.0",
"commander": "11.1.0",
"level-js": "4.0.2",
"leveldown": "6.1.1",
"levelup": "4.3.2",
"mkdirp": "0.5.1",
"mongodb": "^3.6.0",
"progress": "2.0.0",
"promptly": "3.0.3",
"request": "2.87.0",
"request-promise-native": "1.0.5",
"secp256k1": "3.7.1",
"source-map-support": "0.5.13"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/bcryptjs": "2.4.2",
"@types/chai": "5.0.1",
"@types/elliptic": "6.4.3",
"@types/ethereumjs-util": "5.2.0",
"@types/mocha": "10.0.10",
"@types/mongodb": "4.0.7",
"@types/node": "22.13.1",
"@types/request": "2.48.1",
"@types/request-promise-native": "1.0.15",
"@types/secp256k1": "3.5.0",
"chai": "5.1.2",
"mocha": "11.1.0",
"nyc": "^17.1.0",
"sinon": "19.0.2",
"supertest": "7.0.0",
"tsx": "^4.21.0",
"typescript": "5.7.3"
},
"nyc": {
"include": [
"ts_build/src",
"src"
],
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"lines": 60,
"functions": 60,
"branches": 60,
"statements": 60
},
"gitHead": "e091d99915d099863ad3e78dbe867aa7780191e4"
}