forked from MrTiggr/node-bitcoin-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (32 loc) · 723 Bytes
/
package.json
File metadata and controls
36 lines (32 loc) · 723 Bytes
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
{
"name": "bitcoin-explorer",
"version": "0.2.1",
"description": "A block explorer clone built using BitcoinJS",
"main": "./lib/bitcoin",
"keywords": [
"bitcoin",
"realtime",
"block",
"transaction",
"explorer",
"monitoring",
"viewer"
],
"scripts": {
"start": "node app.js"
},
"dependencies": {
"bitcoinjs": ">=0.2.1",
"ejs": ">=0.4.3",
"lru-cache": ">=1.0.4",
"winston": ">=0.3.4",
"express": ">=2.4.4",
"step": ">=0.0.4",
"jsonrpc2": ">=0.1.0"
},
"author": "Stefan Thomas <[email protected]> (http://www.justmoon.net)",
"repository": {
"type": "git",
"url": "git://github.com/bitcoinjs/node-bitcoin-explorer.git"
}
}