@bity/oauth2-auth-code-pkce
Version:
An OAuth 2.0 client that ONLY supports Authorization Code flow with PKCE support.
31 lines (30 loc) • 872 B
JSON
{
"name": "@bity/oauth2-auth-code-pkce",
"version": "2.13.0",
"description": "An OAuth 2.0 client that ONLY supports Authorization Code flow with PKCE support.",
"main": "index.js",
"types": "index.ts",
"repository": {
"type": "git",
"url": "https://github.com/BitySA/oauth2-auth-code-pkce.git"
},
"scripts": {
"build:code:browser": "browserify -s OAuth2AuthCodePKCE -e index.js --outfile index.umd.js",
"build:code:commonjs": "tsc -p tsconfig.json",
"build:code": "npm run build:code:commonjs && npm run build:code:browser",
"build": "npm run build:code",
"serve:tests": "http-server ./ --cors"
},
"keywords": [
"oauth",
"oauth2",
"pkce"
],
"author": "Lee Fallat",
"license": "Apache-2.0",
"devDependencies": {
"browserify": "^16.5.0",
"http-server": "^0.12.3",
"typescript": "^3.7.5"
}
}