-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
59 lines (59 loc) · 1.36 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@badgateway/oauth2-client",
"version": "2.4.2",
"description": "OAuth2 client for browsers and Node.js. Tiny footprint, PKCE support",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "make test",
"prepublishOnly": "make build",
"lint": "make lint"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/badgateway/oauth2-client.git"
},
"keywords": [
"fetch",
"oauth2",
"pkce",
"security",
"bearer",
"RFC6749",
"RFC7636",
"RFC7662",
"RFC8414",
"RFC8707"
],
"author": "Evert Pot (https://evertpot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/badgateway/oauth2-client/issues"
},
"homepage": "https://github.com/badgateway/oauth2-client#readme",
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@curveball/bodyparser": "^1.0.0",
"@curveball/core": "^1.0.0",
"@curveball/http-errors": "^1.0.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.10.0",
"ts-loader": "^9.2.6",
"tsx": "^4.19.0",
"typescript": "^5.0.4",
"webpack": "^5.60.0",
"webpack-cli": "^5.0.1"
},
"browser": "browser/oauth2-client.min.js",
"files": [
"dist/",
"src/",
"browser/",
"LICENSE",
"README.md"
]
}