-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "btcnodejs",
"version": "0.1.3",
"description": "Nodejs bitcoin library which provides tools to handle Bitcoin data structures in a simple fashion",
"main": "./lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"arraybuffer-to-buffer": "^0.0.4",
"assert": "^1.4.1",
"bitcoinjs-lib": "^3.2.0",
"bn.js": "^4.11.8",
"brfs": "^2.0.2",
"bs58": "^4.0.1",
"bs58check": "^2.0.2",
"bytebuffer": "^5.0.1",
"elliptic": "^6.4.0",
"line-reader": "^0.4.0",
"lodash": "^4.17.15",
"long": "^3.2.0",
"ripemd160": "^2.0.1",
"sha.js": "^2.4.8"
},
"devDependencies": {
"bitcoind-rpc": "^0.7.1",
"debug": ">=2.6.9",
"growl": ">=1.10.0",
"mocha": "5.2.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/test.js",
"integration": "./node_modules/mocha/bin/mocha test/integration/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chainside/btcjs.git"
},
"keywords": [
"bitcoin",
"btc"
],
"author": "Francesco Andreozzi",
"license": "LGPLv3",
"bugs": {
"url": "https://github.com/chainside/btcjs/issues"
},
"homepage": "https://github.com/chainside/btcjs#readme"
}