flamesshield-sdk
Version:
Flames Shield Smart rate limiting for Firebase Cloud Functions to protect your services from excessive requests
54 lines (53 loc) • 1.25 kB
JSON
{
"name": "flamesshield-sdk",
"version": "1.0.0",
"description": "Flames Shield Smart rate limiting for Firebase Cloud Functions to protect your services from excessive requests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"prebuild": "node generate-version.js",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flames-shield/flamesshield-sdk.git"
},
"keywords": [
"firebase",
"cloud-functions",
"rate-limiting",
"quota",
"api-protection",
"serverless"
],
"author": "daniel@flamesshield.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/flames-shield/flamesshield-sdk/issues"
},
"homepage": "https://github.com/flames-shield/flamesshield-sdk#readme",
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"dependencies": {
"axios": "^1.8.3",
"firebase-admin": "^13.2.0"
},
"peerDependencies": {
"firebase-admin": ">=11.0.0"
}
}