forked from gasteve/node-base58
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 901 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
{
"name": "base58-native",
"description": "An Implementation of Base58 and Base58Check encoding using bignum library.",
"version": "0.1.4",
"author": {
"name": "Satoshi Nakamoto",
"email": "satoshin@gmx.com"
},
"contributors": [
{"name": "Stefan Thomas", "email": "moon@justmoon.net"},
{"name": "Andrew Schaaf", "email": "andrew@andrewschaaf.com"},
{"name": "Jeff Garzik", "email": "jgarzik@bitpay.com"},
{"name": "Stephen Pair", "email": "stephen@bitpay.com"}
],
"main": "./base58",
"keywords": [
"base58",
"base58check",
"base64",
"encoding"
],
"repository": {
"type": "git",
"url": "http://github.com/gasteve/node-base58.git"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"bignum": "https://github.com/tiltpool/node-bignum.git"
},
"devDependencies": {
"mocha": ">1.0.0"
},
"license": "MIT"
}