Merge pull request #575 from braydonf/ref/package-update-2014-11

Package: Updated to include the latest versions of dependencies
This commit is contained in:
Manuel Aráoz 2014-11-25 11:45:40 -03:00
commit b97e448af6
3 changed files with 18 additions and 18 deletions

View File

@ -26,7 +26,7 @@ Base58Check.decode = function(s) {
if (typeof s !== 'string') if (typeof s !== 'string')
throw new Error('Input must be a string'); throw new Error('Input must be a string');
var buf = base58.decode(s); var buf = new Buffer(base58.decode(s));
if (buf.length < 4) if (buf.length < 4)
throw new Error("Input string too short"); throw new Error("Input string too short");

22
npm-shrinkwrap.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "bitcore2", "name": "bitcore",
"version": "0.0.0", "version": "0.8.0",
"dependencies": { "dependencies": {
"aes": { "aes": {
"version": "0.1.0", "version": "0.1.0",
@ -8,14 +8,14 @@
"resolved": "https://registry.npmjs.org/aes/-/aes-0.1.0.tgz" "resolved": "https://registry.npmjs.org/aes/-/aes-0.1.0.tgz"
}, },
"bn.js": { "bn.js": {
"version": "0.15.0", "version": "0.15.2",
"from": "bn.js@0.15.0", "from": "bn.js@0.15.2",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.0.tgz" "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.2.tgz"
}, },
"bs58": { "bs58": {
"version": "1.2.1", "version": "2.0.0",
"from": "bs58@=1.2.1", "from": "bs58@2.0.0",
"resolved": "https://registry.npmjs.org/bs58/-/bs58-1.2.1.tgz" "resolved": "https://registry.npmjs.org/bs58/-/bs58-2.0.0.tgz"
}, },
"elliptic": { "elliptic": {
"version": "0.15.12", "version": "0.15.12",
@ -23,9 +23,9 @@
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-0.15.12.tgz", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-0.15.12.tgz",
"dependencies": { "dependencies": {
"bn.js": { "bn.js": {
"version": "0.15.0", "version": "0.15.2",
"from": "bn.js@0.15.0", "from": "bn.js@0.15.2",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.0.tgz" "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.2.tgz"
}, },
"hash.js": { "hash.js": {
"version": "0.3.2", "version": "0.3.2",

View File

@ -64,20 +64,20 @@
"url": "https://github.com/bitpay/bitcore.git" "url": "https://github.com/bitpay/bitcore.git"
}, },
"dependencies": { "dependencies": {
"bn.js": "=0.15.0", "bn.js": "=0.15.2",
"bs58": "=1.2.1", "bs58": "=2.0.0",
"elliptic": "=0.15.12", "elliptic": "=0.15.14",
"hash.js": "=0.3.2", "hash.js": "=0.3.2",
"sha512": "=0.0.1" "sha512": "=0.0.1"
}, },
"devDependencies": { "devDependencies": {
"browserify": "~5.9.1", "browserify": "~6.3.3",
"chai": "~1.9.1", "chai": "~1.10.0",
"grunt": "^0.4.5", "grunt": "^0.4.5",
"grunt-contrib-watch": "^0.6.1", "grunt-contrib-watch": "^0.6.1",
"grunt-markdown": "^0.6.1", "grunt-markdown": "^0.6.1",
"grunt-shell": "^1.1.1", "grunt-shell": "^1.1.1",
"mocha": "~1.21.0" "mocha": "~2.0.1"
}, },
"license": "MIT" "license": "MIT"
} }