Initial import

This commit is contained in:
2012-04-16 08:06:57 +01:00
commit ea136a08ff
9 changed files with 704 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "base58",
"version": "0.0.1",
"author": "Jim Myhrberg <contact@jimeh.me>",
"keywords": "base58",
"description": "Base58 encoding and decoding",
"license": "MIT",
"repository" : {
"type" : "git",
"url" : "http://github.com/jimeh/node-base58.git"
},
"main": "./lib/base58",
"scripts": {
"test": "make test"
},
"devDependencies": {
"coffee-script": "1.3.1",
"mocha": "*",
"should": "*"
}
}