Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

passport-local

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

passport-local - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

.travis.yml

2

lib/passport-local/index.js

@@ -10,3 +10,3 @@ /**

*/
exports.version = '0.1.0';
require('pkginfo')(module, 'version');

@@ -13,0 +13,0 @@ /**

@@ -52,3 +52,3 @@ /**

this.name = 'local';
this.verify = verify;
this._verify = verify;
}

@@ -76,3 +76,3 @@

var self = this;
this.verify(username, password, function(err, user) {
this._verify(username, password, function(err, user) {
if (err) { return self.error(err); }

@@ -79,0 +79,0 @@ if (!user) { return self.fail(); }

{
"name": "passport-local",
"version": "0.1.0",
"version": "0.1.1",
"description": "Local username and password authentication strategy for Passport.",
"author": "Jared Hanson <jaredhanson@gmail.com> (http://www.jaredhanson.net/)",
"author": { "name": "Jared Hanson", "email": "jaredhanson@gmail.com", "url": "http://www.jaredhanson.net/" },
"repository": {
"type": "git",
"url": "http://github.com/jaredhanson/passport-local.git"
"url": "git://github.com/jaredhanson/passport-local.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/passport-local/issues"
},
"main": "./lib/passport-local",
"dependencies": {
"passport": ">= 0.1.1"
"pkginfo": "0.2.x",
"passport": "~0.1.1"
},
"devDependencies": {
"vows": "0.6.x"
},
"scripts": {
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js"
},
"engines": { "node": ">= 0.4.0" },
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"keywords": ["passport", "local", "auth", "authn", "authentication"]
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc