-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.01 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
{
"name": "IdentityAwareProxy",
"version": "0.0.0",
"description": "An Identity aware proxy used to protect services and private websites",
"private": true,
"main": "index.js",
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "nodemon make.js run",
"build": "node make.js",
"publish-lambda-code-package": "node make.js publish-lambda-code-package",
"lint": "eslint --ext .js src make.js",
"test": "mocha tests/*.test.js tests/**/*.test.js --require tests/.setup.js"
},
"config": {},
"dependencies": {
"@authress/login": "^2.2.227",
"agentkeepalive": "^4.1.4",
"authress-sdk": "^2.0.69",
"axios": "^1.4.0",
"base64url": "^3.0.1",
"cookie": "^0.5.0",
"error-object-polyfill": "^1.2.26",
"jose": "^4.14.4",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"openapi-factory": "^5.4.60",
"short-uuid": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"aws-architect": "^6.7.62",
"aws-sdk": "^2.1413.0",
"chai": "^4.2.0",
"commander": "^11.0.0",
"eslint": "^7.20.0",
"eslint-config-cimpress-atsquad": "^1.0.67",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.1.1",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Authress/identity-aware-proxy.git"
},
"keywords": [
"IAP",
"Identity Aware Proxy",
"S3 Private website",
"private website",
"Authress",
"Website authentication",
"authentication",
"Login",
"authorization",
"proxy"
],
"author": "Author",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Authress/identity-aware-proxy.git"
},
"homepage": "https://github.com/Authress/identity-aware-proxy.git"
}