From b8b15953b055f099af4edc9d7b99641371d61ae7 Mon Sep 17 00:00:00 2001 From: Marc Bachmann Date: Wed, 23 Nov 2016 02:08:35 +0100 Subject: [PATCH] chore(package): update uuid to version 3.0.0 --- package.json | 10 +++++----- src/forgotPassword.js | 2 +- src/registration.js | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index bd788fd..e8c3530 100644 --- a/package.json +++ b/package.json @@ -28,14 +28,14 @@ }, "homepage": "https://github.com/emertechie/express-local-auth", "dependencies": { + "async": "~0.9.0", + "bcrypt": "~0.8.0", "express": "~4.4.3", - "lodash": "~2.4.1", "express-validator": "~2.3.0", - "node-uuid": "~1.4.1", - "async": "~0.9.0", - "passport-local": "~1.0.0", + "lodash": "~2.4.1", "passport": "~0.2.0", - "bcrypt": "~0.8.0" + "passport-local": "~1.0.0", + "uuid": "^3.0.0" }, "devDependencies": { "body-parser": "~1.4.3", diff --git a/src/forgotPassword.js b/src/forgotPassword.js index 8788ac8..50e9c5d 100644 --- a/src/forgotPassword.js +++ b/src/forgotPassword.js @@ -1,5 +1,5 @@ var _ = require('lodash'), - uuid = require('node-uuid'), + uuid = require('uuid'), async = require('async'), utils = require('./utils'); diff --git a/src/registration.js b/src/registration.js index 07ab6d9..5df9ac2 100644 --- a/src/registration.js +++ b/src/registration.js @@ -1,5 +1,5 @@ var _ = require('lodash'), - uuid = require('node-uuid'), + uuid = require('uuid'), utils = require('./utils'); module.exports = function(sharedServices, authService, options) {