forked from BitySA/oauth2-auth-code-pkce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 872 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"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"
}
}