Changed to bcrypt.js

v1.18.x
Richie Preece 11 years ago
parent 4c01fc4c0e
commit d959aad41f

@ -25,7 +25,6 @@
"passport-facebook": "0.1.5", "passport-facebook": "0.1.5",
"less-middleware": "0.1.12", "less-middleware": "0.1.12",
"marked": "0.2.8", "marked": "0.2.8",
"bcrypt": "0.7.5",
"async": "~0.2.8", "async": "~0.2.8",
"node-imagemagick": "0.1.8", "node-imagemagick": "0.1.8",
"gravatar": "1.0.6", "gravatar": "1.0.6",
@ -47,7 +46,8 @@
"semver": "~2.2.1", "semver": "~2.2.1",
"string": "~1.7.0", "string": "~1.7.0",
"xregexp": "~2.0.0", "xregexp": "~2.0.0",
"socket.io-wildcard": "~0.1.1" "socket.io-wildcard": "~0.1.1",
"bcryptjs": "~0.7.10"
}, },
"optionalDependencies": { "optionalDependencies": {
"redis": "0.8.3", "redis": "0.8.3",

@ -1,5 +1,5 @@
var user = require('./user'), var user = require('./user'),
bcrypt = require('bcrypt'), bcrypt = require('bcryptjs'),
db = require('./database'), db = require('./database'),
path = require('path'), path = require('path'),
winston = require('winston'), winston = require('winston'),

@ -1,4 +1,4 @@
var bcrypt = require('bcrypt'), var bcrypt = require('bcryptjs'),
async = require('async'), async = require('async'),
nconf = require('nconf'), nconf = require('nconf'),
winston = require('winston'), winston = require('winston'),

Loading…
Cancel
Save