-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 990 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "koa-openid-client",
"version": "0.0.2",
"description": "OpenID client for KOA framework.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"keywords": [
"koa",
"openid",
"auth",
"oauth",
"auth0"
],
"author": "Ali Hosni Bouslimi",
"repository": {
"type": "git",
"url": "git+https://github.com/abouslimi/koa-openid-client.git"
},
"license": "MIT",
"dependencies": {
"@koa/router": "^12.0.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^3.0.0",
"koa-unless": "^1.0.7",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"koa": "^2.13.4",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
}
}