hapi-oauth
Advanced tools
Comparing version 0.8.1 to 0.9.0
@@ -43,4 +43,4 @@ import * as Hapi from 'hapi'; | ||
Missing = "Code not found in request", | ||
Unknown = "Unknown error returned from provider" | ||
Unknown = "Unknown error returned from provider", | ||
} | ||
} |
@@ -11,4 +11,4 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const node_fetch_1 = require("node-fetch"); | ||
const qs = require("querystring"); | ||
const node_fetch_1 = require("node-fetch"); | ||
class Provider { | ||
@@ -15,0 +15,0 @@ constructor() { |
@@ -1,7 +0,8 @@ | ||
export * from './discord'; | ||
export * from './google'; | ||
export * from './mixer'; | ||
export * from './patreon'; | ||
export * from './picarto'; | ||
export * from './smashcast'; | ||
export * from './twitch'; | ||
export * from "./discord"; | ||
export * from "./google"; | ||
export * from "./microsoft"; | ||
export * from "./mixer"; | ||
export * from "./patreon"; | ||
export * from "./picarto"; | ||
export * from "./smashcast"; | ||
export * from "./twitch"; |
@@ -8,2 +8,3 @@ "use strict"; | ||
__export(require("./google")); | ||
__export(require("./microsoft")); | ||
__export(require("./mixer")); | ||
@@ -10,0 +11,0 @@ __export(require("./patreon")); |
{ | ||
"name": "hapi-oauth", | ||
"version": "0.8.1", | ||
"description": "Hapi oauth plugin", | ||
"main": "dist/index.js", | ||
"typings": "dist/index", | ||
"scripts": { | ||
"build": "rm -rf dist && tsc", | ||
"prepublish": "npm run build" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/UnwrittenFun/hapi-oauth", | ||
"type": "git" | ||
}, | ||
"author": "James Birtles <jameshbirtles@gmail.com>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"boom": "^7.1.1", | ||
"hapi": "^17.2.0", | ||
"node-fetch": "^2.0.0", | ||
"wreck": "^14.0.2" | ||
}, | ||
"devDependencies": { | ||
"@types/boom": "^7.1.1", | ||
"@types/hapi": "^17.0.1", | ||
"@types/node-fetch": "^1.6.7", | ||
"@types/wreck": "^7.0.29", | ||
"typescript": "^2.7.2" | ||
} | ||
"name": "hapi-oauth", | ||
"version": "0.9.0", | ||
"description": "Hapi oauth plugin", | ||
"main": "dist/index.js", | ||
"typings": "dist/index", | ||
"scripts": { | ||
"build": "rm -rf dist && tsc", | ||
"prepublish": "npm run build" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/UnwrittenFun/hapi-oauth", | ||
"type": "git" | ||
}, | ||
"author": "James Birtles <jameshbirtles@gmail.com>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"boom": "^7.1.1", | ||
"hapi": "^17.2.0", | ||
"node-fetch": "^2.0.0", | ||
"wreck": "^14.0.2" | ||
}, | ||
"devDependencies": { | ||
"@types/boom": "^7.1.1", | ||
"@types/hapi": "^17.0.1", | ||
"@types/node-fetch": "^1.6.7", | ||
"@types/wreck": "^7.0.29", | ||
"typescript": "^2.7.2" | ||
} | ||
} |
import * as Hapi from 'hapi'; | ||
import fetch from 'node-fetch'; | ||
import * as qs from 'querystring'; | ||
import * as Boom from 'boom'; | ||
import fetch from 'node-fetch'; | ||
import { PluginOptions } from './plugin'; | ||
@@ -7,0 +5,0 @@ import { Profile } from './profile'; |
@@ -1,7 +0,8 @@ | ||
export * from './discord'; | ||
export * from './google'; | ||
export * from './mixer'; | ||
export * from './patreon'; | ||
export * from './picarto'; | ||
export * from './smashcast'; | ||
export * from './twitch'; | ||
export * from "./discord"; | ||
export * from "./google"; | ||
export * from "./microsoft"; | ||
export * from "./mixer"; | ||
export * from "./patreon"; | ||
export * from "./picarto"; | ||
export * from "./smashcast"; | ||
export * from "./twitch"; |
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
59497
51
1702