This commit is contained in:
Sefinek 2024-08-17 16:33:57 +02:00
parent ecf68e27bc
commit c35b80a153

View file

@ -1,28 +1,37 @@
{ {
"name": "node-cf-waf-abuseipdb", "name": "cf-waf-abuseipdb",
"version": "1.0.0", "version": "1.0.0",
"main": "index.js", "description": "Enables reporting incidents detected by Cloudflare WAF to the AbuseIPDB database.",
"scripts": { "keywords": [
"test": "echo \"Error: no test specified\" && exit 1", "abuseipdb",
"up": "ncu -u && npm install && npm update && npm audit fix" "cloudflare",
"cloudflare-waf",
"waf",
"reporting",
"abuseipdb-reporting",
"node-abuseipdb"
],
"homepage": "https://github.com/sefinek24/Node-Cloudflare-WAF-AbuseIPDB#readme",
"bugs": {
"url": "https://github.com/sefinek24/Node-Cloudflare-WAF-AbuseIPDB/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/sefinek24/Node-Cloudflare-WAF-AbuseIPDB.git" "url": "git+https://github.com/sefinek24/Node-Cloudflare-WAF-AbuseIPDB.git"
}, },
"author": "Sefinek <contact@nekosia.cat> (https://sefinek.net)",
"license": "MIT", "license": "MIT",
"bugs": { "author": "Sefinek <contact@nekosia.cat> (https://sefinek.net)",
"url": "https://github.com/sefinek24/Node-Cloudflare-WAF-AbuseIPDB/issues" "main": "index.js",
}, "scripts": {
"homepage": "https://github.com/sefinek24/Node-Cloudflare-WAF-AbuseIPDB#readme", "test": "echo \"Error: no test specified\" && exit 1",
"description": "", "up": "ncu -u && npm install && npm update && npm audit fix"
"devDependencies": {
"@eslint/js": "^9.9.0",
"globals": "^15.9.0"
}, },
"dependencies": { "dependencies": {
"axios": "^1.7.4", "axios": "^1.7.4",
"dotenv": "^16.4.5" "dotenv": "^16.4.5"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"globals": "^15.9.0"
} }
} }