Skip to content

Commit

Permalink
feat(bcrypt): Replaces bcrypt with bcryptjs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Nov 19, 2015
1 parent 074ea8c commit 21dc40d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"homepage": "https://github.com/ghaiklor/sails-service-hash#readme",
"dependencies": {
"bcrypt": "0.8.5",
"bcryptjs": "2.3.0",
"lodash": "3.10.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/BCryptHash.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import _ from 'lodash';
import bcrypt from 'bcrypt';
import bcrypt from 'bcryptjs';
import BaseHash from './BaseHash';

/**
Expand Down

0 comments on commit 21dc40d

Please sign in to comment.