forked from chainside/btcnodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "btcnodejs",
"version": "0.1.2",
"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",
"bitcore-lib": "^0.14.0",
"bn.js": "^4.11.8",
"brfs": "^1.4.3",
"bs58": "^4.0.1",
"bs58check": "^2.0.2",
"bytebuffer": "^5.0.1",
"elliptic": "^6.4.0",
"line-reader": "^0.4.0",
"lodash": "^4.17.4",
"long": "^3.2.0",
"ripemd160": "^2.0.1",
"sha.js": "^2.4.8"
},
"devDependencies": {
"mocha": "^3.5.3"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/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"
}