From fcb2bdcd457b9d4f160950ef7090d8e45f83f72e Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 20 Mar 2017 13:41:12 -0600 Subject: [PATCH] v1.0.0 --- bower.json | 37 +++++++++++++++++++++++++++++++++++++ package.json | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 bower.json create mode 100644 package.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..073c9ff --- /dev/null +++ b/bower.json @@ -0,0 +1,37 @@ +{ + "name": "oauth3", + "authors": [ + "AJ ONeal " + ], + "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" + ] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..02d4599 --- /dev/null +++ b/package.json @@ -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 (https://coolaj86.com/)", + "license": "(MIT OR Apache-2.0)" +}