forked from animir/node-rate-limiter-flexible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.67 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "rate-limiter-flexible",
"version": "7.1.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",
"valkey-cluster:up": "docker-compose -f docker-compose.valkey-cluster.yml up -d",
"valkey-cluster:down": "docker-compose -f docker-compose.valkey-cluster.yml down -v",
"test:valkey-cluster": "VALKEY_CLUSTER_PORT=7001 mocha test/RateLimiterValkeyGlide.test.js -- -g 'RateLimiterValkeyGlide with cluster client'",
"prisma:postgres": "prisma generate --schema=./test/RateLimiterPrisma/Postgres/schema.prisma && prisma db push --schema=./test/RateLimiterPrisma/Postgres/schema.prisma",
"test": "npm run prisma:postgres && 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": [
"ratelimter",
"authorization",
"security",
"rate",
"limit",
"bruteforce",
"throttle",
"redis",
"mongodb",
"dynamodb",
"mysql",
"postgres",
"prisma",
"koa",
"express",
"hapi",
"valkey",
"valkey-glide",
"GLIDE",
"cluster",
"memcached"
],
"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",
"@prisma/client": "^5.8.0",
"better-sqlite3": "^11.9.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"etcd3": "^1.1.2",
"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",
"iovalkey": "^0.3.1",
"istanbul": "^1.1.0-alpha.1",
"knex": "^3.1.0",
"memcached-mock": "^0.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prisma": "^5.8.0",
"redis": "^4.6.8",
"redis-mock": "^0.48.0",
"sinon": "^17.0.1",
"sqlite3": "^5.1.7",
"@valkey/valkey-glide": "^1.3.1"
},
"browser": {
"cluster": false,
"crypto": false
}
}