Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recaptcha_enterprise/demosite/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16.0.0"
"node": ">=20.0.0"
},
"repository": {
"type": "git",
Expand Down
16 changes: 8 additions & 8 deletions recaptcha_enterprise/snippets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Google LLC",
"type": "module",
"engines": {
"node": ">=16.0.0"
"node": ">=20.0.0"
},
"files": [
"*.js",
Expand All @@ -19,17 +19,17 @@
"test": "c8 mocha -p -j 2 --loader=ts-node/esm --extension ts --timeout 10000 --exit"
},
"dependencies": {
"@google-cloud/recaptcha-enterprise": "^5.0.0",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"@google-cloud/recaptcha-enterprise": "^6.0.0",
"body-parser": "^2.0.0",
Comment thread
angelcaamal marked this conversation as resolved.
"express": "^5.0.0",
"recaptcha-password-check-helpers": "^1.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.0.0",
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
Comment thread
angelcaamal marked this conversation as resolved.
"@types/yargs": "^17.0.19",
"c8": "^10.0.0",
"eslint": "^8.57.0",
"c8": "^12.0.0",
Comment thread
angelcaamal marked this conversation as resolved.
"eslint": "^10.0.0",
Comment thread
angelcaamal marked this conversation as resolved.
"gts": "^5.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
Expand Down
3 changes: 2 additions & 1 deletion recaptcha_enterprise/snippets/passwordLeakAssessment.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,5 @@ checkPasswordLeak(projectId, username, password).catch(err => {
process.exitCode = 1;
});
// [END recaptcha_enterprise_password_leak_verification]
module.exports = checkPasswordLeak
// eslint-disable-next-line no-undef
module.exports = checkPasswordLeak;
Loading