-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1023 Bytes
/
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
{
"name": "bitcoinjs-adventure",
"version": "1.0.0",
"description": "Learn how to use bitcoinjs-lib",
"main": "index.js",
"bin": {
"bitcoinjs-adventure": "runner.js"
},
"repository": {
"type": "git",
"url": "https://github.com/weilu/bitcoinjs-adventure.git"
},
"keywords": [
"bitcoin",
"bitcoinjs",
"nodeschool",
"adventure"
],
"author": "Wei Lu <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/weilu/bitcoinjs-adventure/issues"
},
"homepage": "https://github.com/weilu/bitcoinjs-adventure",
"dependencies": {
"adventure-map": "^1.0.0",
"bitcoinjs-lib": "^1.1.4",
"cb-blockr": "^2.0.0",
"prompt": "^0.2.14",
"superagent": "^0.20.0"
},
"exercises": {
"Address": "problems/address",
"KeyGen": "problems/keygen",
"Unspent": "problems/unspent",
"Transaction Inputs & Outputs": "problems/txio",
"Transaction": "problems/transaction",
"Transaction Propagation": "problems/sendtx"
}
}