Merge pull request #887 from braydonf/bug/elliptic-hash-dep

Use the same version as specified in the elliptic package.json Closes #886
This commit is contained in:
Esteban Ordano 2015-01-02 13:46:32 -05:00
commit 9f32c1b7ba
2 changed files with 16 additions and 11 deletions

23
npm-shrinkwrap.json generated
View File

@ -13,9 +13,9 @@
"resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-0.4.1.tgz" "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-0.4.1.tgz"
}, },
"bn.js": { "bn.js": {
"version": "0.15.2", "version": "0.16.0",
"from": "bn.js@0.15.2", "from": "bn.js@0.16.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.2.tgz" "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.16.0.tgz"
}, },
"bs58": { "bs58": {
"version": "2.0.0", "version": "2.0.0",
@ -33,14 +33,19 @@
"resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz" "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz"
}, },
"elliptic": { "elliptic": {
"version": "0.15.12", "version": "0.16.0",
"from": "elliptic@0.15.12", "from": "elliptic@0.16.0",
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-0.15.12.tgz", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-0.16.0.tgz",
"dependencies": { "dependencies": {
"bn.js": { "bn.js": {
"version": "0.15.2", "version": "0.16.0",
"from": "bn.js@0.15.2", "from": "bn.js@0.16.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.2.tgz" "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.16.0.tgz"
},
"brorand": {
"version": "1.0.1",
"from": "brorand@1.0.1",
"resolved": "https://registry.npmjs.org/brorand/-/brorand-1.0.1.tgz"
}, },
"hash.js": { "hash.js": {
"version": "0.3.2", "version": "0.3.2",

View File

@ -71,11 +71,11 @@
}, },
"dependencies": { "dependencies": {
"asn1.js": "=0.4.1", "asn1.js": "=0.4.1",
"bn.js": "=0.15.2", "bn.js": "=0.16.0",
"bs58": "=2.0.0", "bs58": "=2.0.0",
"bufferput": "^0.1.2", "bufferput": "^0.1.2",
"buffers": "^0.1.1", "buffers": "^0.1.1",
"elliptic": "=0.15.14", "elliptic": "=0.16.0",
"hash.js": "=0.3.2", "hash.js": "=0.3.2",
"inherits": "=2.0.1", "inherits": "=2.0.1",
"jsrsasign": "=0.0.3", "jsrsasign": "=0.0.3",