Files
Oxicloud/tests/oidc/fake_idp/package.json
T
Edouard Vanbelle ada4b021bf test(oidc): test OIDC login and refresh flow
- ensure Oxicloud s correctly functional with OIDC login
    - refresh token works
    - givenname, familyname, picture are imported in users' informations
    - test relogin (server is not using same path)
    - test email verified
    - test admin group provided from IdP
2026-06-28 23:22:37 +02:00

19 lines
500 B
JSON

{
"name": "fake-idp",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Spec-compliant OIDC stub used by tests/oidc/oidc.hurl. Wraps panva/node-oidc-provider with an auto-approve interaction so Hurl can drive the authorize → token flow without rendering a login form.",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node server.js"
},
"dependencies": {
"@koa/router": "^13.1.0",
"koa": "^2.16.0",
"oidc-provider": "^9.4.0"
}
}