Upgrade packages/non-core/npm-bcrypt and republish.

Developers using Meteor 1.3+ should really just `npm install bcrypt`
instead of using this wrapper package.
This commit is contained in:
Ben Newman
2016-04-10 12:11:47 -04:00
parent 5c7e6065ac
commit 5db9e2cdcd
3 changed files with 16 additions and 7 deletions

View File

@@ -1,10 +1,19 @@
{
"dependencies": {
"bcrypt": {
"version": "0.7.8",
"version": "0.8.5",
"resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-0.8.5.tgz",
"from": "bcrypt@0.8.5",
"dependencies": {
"bindings": {
"version": "1.0.0"
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz",
"from": "bindings@1.2.1"
},
"nan": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.0.5.tgz",
"from": "nan@2.0.5"
}
}
}

View File

@@ -1,3 +1,3 @@
meteor@1.1.4
npm-bcrypt@0.7.8_1
underscore@1.0.2
meteor@1.1.14-rc.0
npm-bcrypt@0.8.5
underscore@1.0.8-rc.0

View File

@@ -1,11 +1,11 @@
Package.describe({
summary: "Wrapper around the bcrypt npm package",
version: '0.7.8_2',
version: '0.8.5',
documentation: null
});
Npm.depends({
bcrypt: '0.7.8'
bcrypt: '0.8.5'
});
Package.onUse(function (api) {