recaptcha-node
Version:
A Node.js library to verify reCAPTCHA v2/v3 response tokens received from a client.
49 lines (48 loc) • 1.19 kB
JSON
{
"name": "recaptcha-node",
"version": "0.2.0",
"description": "A Node.js library to verify reCAPTCHA v2/v3 response tokens received from a client.",
"homepage": "https://github.com/jaredcrimmins/recaptcha-node#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run compile",
"compile": "tsc",
"clean": "gts clean",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredcrimmins/recaptcha-node.git"
},
"keywords": [
"captcha",
"recaptcha",
"recaptcha v2",
"recaptcha v3",
"grecaptcha"
],
"author": {
"name": "Jared Crimmins",
"email": "jared@crimmins.io"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"husky": "^6.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"tslib": "^2.1.0"
},
"publishConfig": {
"access": "public"
}
}