forked from simov/grant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.39 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.39 KB
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
{
"name": "grant",
"version": "5.4.22",
"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 <simeonvelichkov@gmail.com> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/grant.git"
},
"dependencies": {
"cookie": "^0.5.0",
"cookie-signature": "^1.2.1",
"jwk-to-pem": "^2.0.5",
"jws": "^4.0.0",
"qs": "^6.11.2",
"request-compose": "^2.1.6",
"request-oauth": "^1.0.1"
},
"devDependencies": {
"cookie-session": "^2.0.0",
"grant-profile": "^1.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"request-cookie": "^1.0.1"
},
"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/",
"test:cov": "npx nyc --reporter=lcov --reporter=text-summary mocha -- --recursive test/"
},
"engines": {
"node": ">=12.0.0"
}
}