forked from panva/node-oidc-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "oidc-provider",
"version": "7.10.6",
"description": "OAuth 2.0 Authorization Server implementation for Node.js with OpenID Connect",
"keywords": [
"appauth",
"auth",
"authentication",
"authorization",
"basic",
"certified",
"ciba",
"config",
"connect",
"device flow",
"dpop",
"dynamic",
"express",
"fapi",
"fastify",
"hapi",
"hybrid",
"identity",
"implicit",
"jar",
"jarm",
"koa",
"mtls",
"oauth 2.0",
"oauth 2.1",
"oauth",
"oauth2",
"oidc",
"openid",
"par",
"pkce",
"provider",
"server"
],
"homepage": "https://github.com/panva/node-oidc-provider",
"repository": "panva/node-oidc-provider",
"funding": {
"url": "https://github.com/sponsors/panva"
},
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"ci": "node ./test/ci",
"coverage": "c8 --reporter=lcov --reporter=text-summary node ./test/run",
"heroku-postbuild": "npm install mongodb@^4.3.0 openid-client@^5.0.0",
"lint": "eslint lib example certification test",
"lint-fix": "eslint lib example certification test --fix",
"test": "node ./test/run"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"cacheable-lookup": "^6.0.1",
"debug": "^4.3.2",
"ejs": "^3.1.6",
"got": "^11.8.2",
"jose": "^4.1.4",
"jsesc": "^3.0.2",
"koa": "^2.13.3",
"koa-compose": "^4.1.0",
"nanoid": "^3.1.28",
"object-hash": "^2.2.0",
"oidc-token-hash": "^5.0.1",
"paseto": "^2.1.3",
"quick-lru": "^5.1.1",
"raw-body": "^2.4.1"
},
"optionalDependencies": {
"paseto3": "npm:paseto@^3.1.0"
},
"devDependencies": {
"@hapi/hapi": "^20.2.0",
"babel-eslint": "^10.1.0",
"base64url": "^3.0.1",
"c8": "^7.9.0",
"chai": "^4.3.4",
"clear-module": "^4.1.1",
"connect": "^3.7.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"express": "^4.17.1",
"fastify": "^3.21.6",
"helmet": "^5.0.1",
"jose2": "npm:jose@^2.0.5",
"koa-body": "^4.2.0",
"koa-ejs": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"lodash": "^4.17.21",
"middie": "^5.3.0",
"mocha": "^9.1.3",
"mocha.parallel": "github:panva/mocha.parallel",
"moment": "^2.29.1",
"nock": "^13.1.3",
"selfsigned": "^2.0.0",
"sinon": "^12.0.1",
"supertest": "^6.1.6",
"timekeeper": "^2.2.0"
},
"engines": {
"node": "^12.19.0 || ^14.15.0 || ^16.13.0"
}
}