refactor to vanilla js

This commit is contained in:
louisbuchbinder
2017-07-08 08:40:30 -07:00
parent 12ce0b0d69
commit 4ff09a0d77
13 changed files with 717 additions and 617 deletions

View File

@@ -1,36 +1,36 @@
{
"name": "base58",
"version": "0.1.0",
"keywords": "base58",
"description": "Base58 encoding and decoding",
"licenses": [{
"type": "MIT",
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
}],
"name": "base58",
"version": "1.0.0",
"keywords": "base58, flickr",
"description": "Flickr Flavored Base58 Encoding and Decoding",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
}
],
"author": {
"name": "Jim Myhrberg",
"email": "contact@jimeh.me"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/jimeh/node-base58.git"
"contributors": [
"Louis Buchbinder github@louisbuchbinder.com"
],
"repository": {
"type": "git",
"url": "https://github.com/jimeh/node-base58.git"
},
"main": "./lib/base58",
"main": "./src/base58",
"engines": {
"node": ">= 0.4.0 < 0.7.0"
"node": ">= 4"
},
"devDependencies": {
"coffee-script": "1.3.1",
"mocha": "1.0.x",
"should": "0.6.x"
"eslint": "^4.1.1",
"eslint-config-flickr": "^1.3.1",
"mocha": "^3.4.2"
},
"scripts": {
"test": "make test"
"lint": "eslint . --fix",
"test": "mocha test"
}
}