Changed to bcrypt.js

This commit is contained in:
Richie Preece
2014-01-21 20:56:12 -07:00
parent 4c01fc4c0e
commit d959aad41f
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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