6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "rate-limiter-flexible",
|
|
"version": "4.0.1",
|
|
"description": "Node.js rate limiter by key and protection from DDoS and Brute-Force attacks in process Memory, Redis, MongoDb, Memcached, MySQL, PostgreSQL, Cluster or PM",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dc:up": "docker-compose -f docker-compose.yml up -d",
|
|
"dc:down": "docker-compose -f docker-compose.yml down",
|
|
"test": "nyc --reporter=html --reporter=text mocha",
|
|
"debug-test": "mocha --inspect-brk lib/**/**.test.js",
|
|
"coveralls": "cat ./coverage/lcov.info | coveralls",
|
|
"eslint": "eslint --quiet lib/**/**.js test/**/**.js",
|
|
"eslint-fix": "eslint --fix lib/**/**.js test/**/**.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/animir/node-rate-limiter-flexible.git"
|
|
},
|
|
"keywords": [
|
|
"authorization",
|
|
"security",
|
|
"rate",
|
|
"limit",
|
|
"ratelimter",
|
|
"brute",
|
|
"force",
|
|
"bruteforce",
|
|
"throttle",
|
|
"koa",
|
|
"express",
|
|
"hapi",
|
|
"auth",
|
|
"ddos",
|
|
"queue"
|
|
],
|
|
"author": "animir <animirr@gmail.com>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/animir/node-rate-limiter-flexible/issues"
|
|
},
|
|
"homepage": "https://github.com/animir/node-rate-limiter-flexible#readme",
|
|
"types": "./lib/index.d.ts",
|
|
"devDependencies": {
|
|
"@aws-sdk/client-dynamodb": "^3.431.0",
|
|
"chai": "^4.1.2",
|
|
"coveralls": "^3.0.1",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-airbnb-base": "^12.1.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"ioredis": "^5.3.2",
|
|
"istanbul": "^1.1.0-alpha.1",
|
|
"memcached-mock": "^0.1.0",
|
|
"mocha": "^10.2.0",
|
|
"nyc": "^15.1.0",
|
|
"redis": "^4.6.8",
|
|
"redis-mock": "^0.48.0",
|
|
"sinon": "^17.0.1"
|
|
},
|
|
"browser": {
|
|
"cluster": false,
|
|
"crypto": false
|
|
}
|
|
}
|