Skip to content

Commit

Permalink
feat: update packages and run scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
brakmic committed Dec 30, 2024
1 parent 595cad1 commit ac1f2f8
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,19 @@
"description": "A Passport.js strategy for authenticating with Keycloak using the OAuth2/OIDC API",
"main": "./lib/index.js",
"scripts": {
"test": "make test"
"pretest:integration": "pnpx puppeteer browsers install chrome",
"test": "jest",
"test:integration": "jest --testPathPattern=./test/integration.test.js -- --detectOpenHandles",
"test:package": "jest --testPathPattern=./test/package.test.js",
"test:strategy": "jest --testPathPattern=./test/strategy.test.js",
"start:keycloak": "sudo docker compose -f test/bootstrap/keycloak/docker-compose.test.yml up -d --remove-orphans",
"stop:keycloak": "sudo docker compose -f test/bootstrap/keycloak/docker-compose.test.yml down",
"lint": "pnpx eslint .",
"start:mock-server": "node test/mock-server.js --port 3000 --callbackPath /callback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/louie007/passport-keycloak-oauth2-oidc.git"
"url": "git+https://github.com/brakmic/passport-keycloak-oauth2-oidc.git"
},
"keywords": [
"passport",
Expand All @@ -27,9 +35,23 @@
"passport-oauth2": "^1.8.0"
},
"devDependencies": {
"chai": "^5.1.2",
"chai-passport-strategy": "^3.0.0",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.17.0",
"axios": "^1.7.9",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"make-node": "^0.4.6",
"mocha": "^11.0.1"
"openid-client": "^5.1.0",
"passport": "^0.7.0",
"puppeteer": "^23.11.1",
"yargs": "^17.7.2"
}
}

0 comments on commit ac1f2f8

Please sign in to comment.