-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 897 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
31
32
{
"name": "oauth2-pkce",
"version": "2.1.3",
"description": "An OAuth 2.0 client library for the Authorization Code flow with PKCE",
"main": "index.js",
"types": "*.d.ts",
"files": ["*.js", "*.d.ts"],
"repository": {
"type": "git",
"url": "https://github.com/Archelyst/oauth2-pkce.git"
},
"scripts": {
"build:code:browser": "browserify -p esmify -s OAuth2Pkce -e index.js --outfile index.umd.js",
"build:code:esm": "tsc -p tsconfig.json",
"build:code": "npm run build:code:esm && npm run build:code:browser",
"build": "npm run clean && npm run build:code",
"clean": "rm -f *.d.ts *.js"
},
"keywords": [
"oauth",
"oauth2",
"pkce",
"authorization grant"
],
"author": "Tim-Christian Mundt",
"license": "AGPL-3.0-only",
"devDependencies": {
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"typescript": "^4.3.2"
}
}