-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
66 lines (58 loc) · 1.37 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
{
"name": "bitcoinjs",
"version": "0.2.5",
"description": "Implementation of Bitcoin's peer-to-peer layer for Node.js",
"main": "./lib/bitcoin",
"keywords": [
"peer-to-peer",
"bitcoin",
"client"
],
"bin": {
"bitcoinjs": "./bin/bitcoinjs"
},
"scripts": {
"install": "node-waf configure build"
},
"man": [
"./man/bitcoinjs.1",
"./man/run.1",
"./man/db-reset.1",
"./man/db-drop.1",
"./man/test.1"
],
"dependencies": {
"buffertools": ">=1.0.3",
"binary": ">=0.2.5 <0.3",
"bignum": ">=0.4.0",
"step": ">=0.0.4",
"winston": ">=0.2.6",
"irc": ">=0.2.1",
"jsonrpc2": ">=0.1.0",
"yanop": ">=0.1.1",
"forever": ">=0.6.1",
"mongodb": ">=0.9.7-3-1",
"progress-bar": ">=0.1.1",
"colors": ">=0.5.0",
"lru-cache": ">=1.0.4",
"pkginfo": ">=0.2.0",
"buffers": ">=0.1.1",
"leveldb": ">=0.5.5",
"mkdirp": ">=0.2.1"
},
"devDependencies": {
"vows": ">=0.5.8",
"ronn": ">=0.3.6"
},
"author": "Stefan Thomas <[email protected]> (http://www.justmoon.net)",
"contributors": [
"Andrew Schaaf <[email protected]>",
"Mike Hearn <[email protected]>",
"Robert Kieffer <[email protected]>",
"Bill Casarin <[email protected]> (jb55.com)"
],
"repository": {
"type": "git",
"url": "git://github.com/bitcoinjs/node-bitcoin-p2p.git"
}
}