@hitchy/plugin-auth 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/coverage/block-navigation.js +8 -0
- package/coverage/index.html +8 -3
- package/coverage/plugin-auth/api/controller/index.html +8 -3
- package/coverage/plugin-auth/api/controller/user.js.html +8 -3
- package/coverage/plugin-auth/api/model/authorization/index.html +8 -3
- package/coverage/plugin-auth/api/model/authorization/rule.js.html +8 -3
- package/coverage/plugin-auth/api/model/index.html +8 -3
- package/coverage/plugin-auth/api/model/role.js.html +8 -3
- package/coverage/plugin-auth/api/model/user-to-role.js.html +8 -3
- package/coverage/plugin-auth/api/model/user.js.html +8 -3
- package/coverage/plugin-auth/api/policy/authentication.js.html +8 -3
- package/coverage/plugin-auth/api/policy/authorization.js.html +8 -3
- package/coverage/plugin-auth/api/policy/index.html +8 -3
- package/coverage/plugin-auth/api/policy/user.js.html +8 -3
- package/coverage/plugin-auth/api/service/auth/index.html +8 -3
- package/coverage/plugin-auth/api/service/auth/manager.js.html +8 -3
- package/coverage/plugin-auth/api/service/authentication/index.html +8 -3
- package/coverage/plugin-auth/api/service/authentication/passport.js.html +8 -3
- package/coverage/plugin-auth/api/service/authentication/strategies.js.html +8 -3
- package/coverage/plugin-auth/api/service/authorization/index.html +8 -3
- package/coverage/plugin-auth/api/service/authorization/node.js.html +8 -3
- package/coverage/plugin-auth/api/service/authorization/policy-generator.js.html +8 -3
- package/coverage/plugin-auth/api/service/authorization/tree.js.html +8 -3
- package/coverage/plugin-auth/config/auth.js.html +8 -3
- package/coverage/plugin-auth/config/index.html +8 -3
- package/coverage/plugin-auth/index.html +8 -3
- package/coverage/plugin-auth/index.js.html +8 -3
- package/coverage/sorter.js +26 -0
- package/coverage/tmp/coverage-2884-1653923449663-0.json +1 -0
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitchy/plugin-auth",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "user authentication and authorization for Hitchy",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -22,27 +22,27 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://auth.hitchy.org",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@hitchy/core": "^0.
|
|
25
|
+
"@hitchy/core": "^0.7.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@hitchy/server-dev-tools": "^0.4.
|
|
28
|
+
"@hitchy/server-dev-tools": "^0.4.3",
|
|
29
29
|
"@hitchy/types": "^0.1.0",
|
|
30
|
-
"c8": "^7.11.
|
|
31
|
-
"eslint": "^8.
|
|
30
|
+
"c8": "^7.11.3",
|
|
31
|
+
"eslint": "^8.16.0",
|
|
32
32
|
"eslint-config-cepharum": "^1.0.12",
|
|
33
33
|
"eslint-plugin-promise": "^6.0.0",
|
|
34
|
-
"mocha": "^
|
|
35
|
-
"openid-client": "^5.1.
|
|
34
|
+
"mocha": "^10.0.0",
|
|
35
|
+
"openid-client": "^5.1.6",
|
|
36
36
|
"passport-saml": "^3.2.1",
|
|
37
37
|
"should": "^13.2.3",
|
|
38
38
|
"should-http": "^0.1.1",
|
|
39
39
|
"vuepress": "^1.9.7"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@hitchy/plugin-cookies": "^0.1.
|
|
43
|
-
"@hitchy/plugin-odem": "^0.7.
|
|
44
|
-
"@hitchy/plugin-session": "^0.1.
|
|
45
|
-
"passport": "^0.5.
|
|
42
|
+
"@hitchy/plugin-cookies": "^0.1.7",
|
|
43
|
+
"@hitchy/plugin-odem": "^0.7.1",
|
|
44
|
+
"@hitchy/plugin-session": "^0.1.11",
|
|
45
|
+
"passport": "^0.5.3",
|
|
46
46
|
"passport-local": "^1.0.0"
|
|
47
47
|
}
|
|
48
48
|
}
|