forked from BitySA/oauth2-auth-code-pkce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 874 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 874 Bytes
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
31
32
{
"name": "@bity/oauth2-auth-code-pkce",
"version": "2.7.1",
"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": "webpack",
"build:code:es2015": "tsc -p tsconfig.json -m commonjs",
"build:code": "npm run build:code:browser; npm run build:code:es2015",
"build": "npm run build:code",
"serve:tests": "http-server ./ --cors"
},
"keywords": [
"oauth",
"oauth2",
"pkce"
],
"author": "Lee Fallat",
"license": "AGPL-3.0-only",
"devDependencies": {
"http-server": "^0.11.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}