-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "@bleco/authentication",
"description": "A loopback-next extension for authentication feature. OAuth strategies supported.",
"version": "1.5.3",
"keywords": [],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16"
},
"author": "ty",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "nb-tsc",
"clean": "del 'bleco-authentication*.tgz' 'dist' '*.tsbuildinfo' 'package'",
"pretest": "yarn run clean && yarn run build",
"test": "yarn run pretest && yarn run jest",
"jest": "jest"
},
"peerDependencies": {
"@loopback/boot": "^5.0.8",
"@loopback/rest": "^12.0.8"
},
"dependencies": {
"@authajs/passport-autha": "^0.1.10",
"@bleco/aliaser": "workspace:^",
"@exlinc/keycloak-passport": "^1.0.2",
"@loopback/context": "^7.0.6",
"@loopback/core": "^6.1.3",
"@node-saml/passport-saml": "^5.0.0",
"ajv": "^8.17.1",
"berrors": "^0.3.1",
"debug": "^4.3.7",
"https-proxy-agent": "^7.0.5",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-apple": "file:vendor/passport-apple",
"passport-auth0": "^1.4.4",
"passport-azure-ad": "^4.3.5",
"passport-cognito-oauth2": "^0.1.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-http-bearer": "^1.0.1",
"passport-instagram": "^1.0.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.8.0",
"passport-oauth2-client-password": "^0.1.2",
"tslib": "^2.7.0"
},
"devDependencies": {
"@nutol/build": "^0.2.22",
"@nutol/eslint-config": "^0.2.16",
"@types/client-sessions": "^0.8.6",
"@types/node": "^22.6.1",
"@types/passport": "^1.0.16",
"@types/passport-apple": "^2.0.3",
"@types/passport-auth0": "^1",
"@types/passport-azure-ad": "^4.3.6",
"@types/passport-facebook": "^3.0.3",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-http-bearer": "^1.0.41",
"@types/passport-instagram": "^1.0.5",
"@types/passport-local": "^1.0.38",
"@types/passport-oauth2-client-password": "^0.1.5",
"client-sessions": "^0.8.0",
"del-cli": "^5.1.0",
"jest": "^29.7.0"
},
"files": [
"README.md",
"LICENSE",
"dist",
"src",
"vendor",
"!*/__tests__"
]
}