github-auth-library
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -1,4 +0,4 @@ | ||
const GithubAuthLibrary = require("./GithubAuthLibrary"); | ||
const GithubAuthLibrary = require("./src/GithubAuthLibrary"); | ||
module.exports = GithubAuthLibrary; | ||
// Path: src/GithubAuthLibrary.js |
{ | ||
"name": "github-auth-library", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A Node.js SDK for GitHub OAuth and User APIs", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
const GitHubOAuthService = require("./oauth/GitHubOAuthService"); | ||
class GithubAuthLibarary { | ||
class GithubAuthLibrary { | ||
constructor(clientId, clientSecret) { | ||
@@ -17,2 +17,2 @@ this.oauthService = new GitHubOAuthService(clientId, clientSecret); | ||
module.exports = GithubAuthLibarary; | ||
module.exports = GithubAuthLibrary; |
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
2433