node-stratum-pool/node_modules/base58-native/package.json
2014-01-06 15:17:35 -05:00

57 lines
2.3 KiB
JSON

{
"name": "base58-native",
"description": "An Implementation of Base58 and Base58Check encoding using bignum library.",
"version": "0.1.3",
"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": ">=0.6.1"
},
"devDependencies": {
"mocha": ">1.0.0"
},
"license": "MIT",
"readme": "base58\n======\n\nAn implementation of Base58 and Base58Check encodings for nodejs. Note, the\nimplementation of Base58Check differs slightly from that described on Wikipedia\nin that it does not prepend a version byte onto the data being encoded. This\nimplementation uses the bignum library (which is a native module and uses the\nopenssl bignumber library functions).\n\nNOTE: earlier versions of this package used native C code instead of bignum, but\nit was found to be unstable in a production environment (likely due to bugs in the\nC code). This version uses bignum and appears to be very stable, but slower. The\nC version of this package is still available on the \"native-module\" branch. A few\nadditional methods added to bignum would probably bring the speed of this version \non part with with C version. \n\nInstallation\n============\n\n npm install base58-native\n\nUsage\n=====\n\n var base58 = require('base58-native');\n base58.encode(base58.decode('mqqa8xSMVDyf9QxihGnPtap6Mh6qemUkcu'));\n\n var base58Check = require('base58-native').base58Check;\n base58Check.encode(base58Check.decode('mqqa8xSMVDyf9QxihGnPtap6Mh6qemUkcu'));\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/gasteve/node-base58/issues"
},
"homepage": "https://github.com/gasteve/node-base58",
"_id": "base58-native@0.1.3",
"_from": "base58-native@"
}