forked from bitcoinjs/bitcoinjs-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.79 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
{
"name": "@bithereum/bethjs-lib",
"version": "3.3.25",
"description": "Client-side Bithereum JavaScript library",
"main": "./src/index.js",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"bitcoinjs",
"bitcoin",
"browserify",
"javascript",
"bitcoinjs",
"bithereumjs",
"bethjs-lib"
],
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
"coverage": "nyc --check-coverage --branches 80 --functions 80 mocha",
"integration": "mocha test/integration/",
"standard": "standard",
"test": "npm run standard && npm run coverage",
"unit": "mocha",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BTHPOS/bitcoinjs-lib.git"
},
"files": [
"src"
],
"dependencies": {
"bech32": "^1.1.2",
"bigi": "^1.4.0",
"bip66": "^1.1.0",
"bitcoin-ops": "^1.3.0",
"bs58check": "^2.0.0",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"ecurve": "^1.0.0",
"equihashjs-verify": "^1.0.5",
"merkle-lib": "^2.0.10",
"pushdata-bitcoin": "^1.0.1",
"randombytes": "^2.0.1",
"safe-buffer": "^5.0.1",
"typeforce": "^1.11.3",
"varuint-bitcoin": "^1.0.4",
"wif": "^2.0.1"
},
"devDependencies": {
"bip39": "^2.3.0",
"bip65": "^1.0.1",
"bs58": "^4.0.0",
"dhttp": "^2.4.2",
"hoodwink": "^1.0.0",
"minimaldata": "^1.0.2",
"mocha": "^5.2.0",
"nyc": "^11.4.1",
"proxyquire": "^1.4.0",
"standard": "^9.0.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BTHPOS/bitcoinjs-lib/issues"
},
"homepage": "https://github.com/BTHPOS/bitcoinjs-lib#readme",
"directories": {
"test": "test"
},
"author": "BitcoinJS Team + Dondrey Taylor"
}