hapi-auth-bearer-simple
Advanced tools
Comparing version 3.0.2 to 3.1.0
{ | ||
"name": "hapi-auth-bearer-simple", | ||
"description": "Custom authentication plugin for Hapi using Bearer tokens", | ||
"version": "3.0.2", | ||
"version": "3.1.0", | ||
"author": "Adri Van Houdt <adri@salesflare.com>", | ||
@@ -27,8 +27,8 @@ "private": false, | ||
"devDependencies": { | ||
"lab": "7.x.x", | ||
"lab": "8.x.x", | ||
"code": "2.x.x", | ||
"hapi": "11.x.x" | ||
"hapi": ">=11.x.x <=13.x.x" | ||
}, | ||
"peerDependencies": { | ||
"hapi": ">=11.x.x" | ||
"hapi": ">=11.x.x <=13.x.x" | ||
}, | ||
@@ -35,0 +35,0 @@ "engines": { |
@@ -168,3 +168,3 @@ 'use strict'; | ||
const server = new Hapi.Server(); | ||
const server = new Hapi.Server({ debug: false }); | ||
server.connection(); | ||
@@ -414,3 +414,3 @@ | ||
const server = new Hapi.Server(); | ||
const server = new Hapi.Server({ debug: false }); | ||
server.connection(); | ||
@@ -527,3 +527,3 @@ | ||
expect(fn).to.throw('Payload validation can only be required when all strategies support it in path: /'); | ||
expect(fn).to.throw('Payload validation can only be required when all strategies support it in /'); | ||
done(); | ||
@@ -569,3 +569,3 @@ }); | ||
expect(fn).to.throw('Payload authentication requires at least one strategy with payload support in path: /'); | ||
expect(fn).to.throw('Payload authentication requires at least one strategy with payload support in /'); | ||
done(); | ||
@@ -572,0 +572,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25450
191