This commit is contained in:
AJ ONeal 2017-03-20 13:41:12 -06:00
parent 813410d6b5
commit fcb2bdcd45
2 changed files with 72 additions and 0 deletions

37
bower.json Normal file
View File

@ -0,0 +1,37 @@
{
"name": "oauth3",
"authors": [
"AJ ONeal <aj@daplie.com>"
],
"description": "The world's smallest, fastest, and most secure OAuth3 (and OAuth2) JavaScript implementation.",
"main": "oauth3.core.js",
"keywords": [
"oauth",
"oauth2",
"oauth3",
"oidc",
"openid",
"connect",
"openidconnect",
"authn",
"authz",
"authentication",
"authorization",
"user",
"password",
"passphrase",
"login",
"signin",
"log",
"sign"
],
"license": "MIT",
"homepage": "https://git.daplie.com/OAuth3/oauth3.js",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}

35
package.json Normal file
View File

@ -0,0 +1,35 @@
{
"name": "oauth3",
"version": "1.0.0",
"description": "The world's smallest, fastest, and most secure OAuth3 (and OAuth2) JavaScript implementation.",
"main": "oauth3.node.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.daplie.com:OAuth3/oauth3.js.git"
},
"keywords": [
"oauth",
"oauth2",
"oauth3",
"oidc",
"openid",
"connect",
"openidconnect",
"authn",
"authz",
"authentication",
"authorization",
"user",
"password",
"passphrase",
"login",
"signin",
"log",
"sign"
],
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)"
}