forked from simov/grant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.99 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
{
"name": "grant",
"version": "5.4.12",
"description": "OAuth Proxy",
"keywords": [
"oauth",
"oauth2",
"openid",
"openid-connect",
"authentication",
"authorization",
"proxy",
"middleware",
"lambda",
"express",
"koa",
"hapi",
"fastify",
"aws",
"azure",
"google-cloud",
"vercel"
],
"license": "MIT",
"homepage": "https://github.com/simov/grant",
"author": "Simeon Velichkov <[email protected]> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/grant.git"
},
"dependencies": {
"qs": "^6.10.0",
"request-compose": "^2.1.3",
"request-oauth": "^1.0.1"
},
"optionalDependencies": {
"cookie": "^0.4.1",
"cookie-signature": "^1.1.0",
"jwk-to-pem": "^2.0.3",
"jws": "^4.0.0"
},
"devDependencies": {
"@curveball/bodyparser": "0.4.6",
"@curveball/core": "0.14.2",
"@curveball/router": "0.2.4",
"@curveball/session": "0.5.0",
"@hapi/hapi": "^18.4.1",
"@hapi/yar": "^9.2.1",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"coveralls": "^3.1.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fastify": "^3.14.0",
"fastify-cookie": "^5.3.0",
"fastify-formbody": "^5.0.0",
"fastify-session": "^5.2.1",
"grant-profile": "^1.0.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.2.1",
"koa-mount": "^4.0.0",
"koa-qs": "^3.0.0",
"koa-session": "^6.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"request-cookie": "^1.0.0",
"request-logs": "^2.1.3"
},
"main": "./grant.js",
"files": [
"config/",
"lib/",
"grant.js",
"grant.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"types": "grant.d.ts",
"scripts": {
"test": "npm run test:ci",
"test:ci": "npx mocha --recursive",
"test:cov": "npx nyc --reporter=lcov --reporter=text-summary mocha -- --recursive"
},
"engines": {
"node": ">=8.0.0"
}
}