forked from bitpay/bitcoind-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "bitcoind-rpc",
"description": "Bitcoin Client Library to connect to Bitcoin Core via RPC",
"version": "0.7.0",
"author": {
"name": "Stephen Pair",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jeff Garzik",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
},
{
"name": "Braydon Fuller",
"email": "[email protected]"
}
],
"keywords": [
"bitcoin",
"rpc"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcoind-rpc"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha test -R spec",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --recursive"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^1.10.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"sinon": "^1.12.2"
},
"bugs": {
"url": "https://github.com/bitpay/bitcoind-rpc/issues"
},
"homepage": "https://github.com/bitpay/bitcoind-rpc"
}