forked from BlockIo/block_io-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 1.08 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
{
"name" : "block_io",
"description" : "Block.io API wrapper for node.js",
"keywords" : [ "block.io", "block_io", "bitcoin", "litecoin", "dogecoin", "wallet" ],
"version" : "1.0.9-3",
"preferGlobal" : false,
"homepage" : "https://github.com/BlockIo/block_io-nodejs",
"author" : "Patrick Lodder <[email protected]> (https://github.com/patricklodder)",
"repository" : {
"type" : "git",
"url" : "git://github.com/BlockIo/block_io-nodejs.git"
},
"bugs" : {
"url" : "https://github.com/BlockIo/block_io-nodejs/issues"
},
"directories" : {
"lib" : "./lib"
},
"main" : "./lib/block_io.js",
"dependencies" : {
"request" : "=2.79.0",
"bigi" : "=1.4.2",
"bitcoinjs-lib" : "=1.5.6",
"pbkdf2-sha256" : "=1.1.1"
},
"devDependencies": {
"vows": "0.8.x"
},
"engines" : {
"node" : ">=0.8",
"npm" : ">=1.0.0"
},
"scripts": {
"test" : "node_modules/.bin/vows --spec test/*.js"
},
"licenses" : [ {
"type" : "MIT"
, "url" : "https://github.com/BlockIo/block_io-nodejs/raw/master/LICENSE"
}
]
}