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"
},
"bn.js": {
"version": "0.15.2",
"from": "bn.js@0.15.2",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.2.tgz"
"version": "0.16.0",
"from": "bn.js@0.16.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.16.0.tgz"
},
"bs58": {
"version": "2.0.0",
@ -33,14 +33,19 @@
"resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz"
},
"elliptic": {
"version": "0.15.12",
"from": "elliptic@0.15.12",
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-0.15.12.tgz",
"version": "0.16.0",
"from": "elliptic@0.16.0",
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-0.16.0.tgz",
"dependencies": {
"bn.js": {
"version": "0.15.2",
"from": "bn.js@0.15.2",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-0.15.2.tgz"
"version": "0.16.0",
"from": "bn.js@0.16.0",
"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": {
"version": "0.3.2",

View File

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