-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.61 KB
/
package.json
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
{
"name": "hapi-rate-limitor",
"description": "Rate limiting for hapi/hapi.js to prevent brute-force attacks",
"version": "4.0.0",
"author": "Marcus Pöhls <marcus@futurestud.io>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-rate-limitor/issues"
},
"dependencies": {
"@hapi/boom": "~10.0.1",
"@supercharge/request-ip": "~1.2.0",
"async-ratelimiter": "~1.3.13",
"ioredis": "~5.4.0"
},
"devDependencies": {
"@hapi/basic": "~7.0.2",
"@hapi/hapi": "~21.3.7",
"@hapi/vision": "~7.0.3",
"ava": "~5.3.0",
"eslint": "~8.57.0",
"eslint-config-standard": "~17.1.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.6.0",
"eslint-plugin-standard": "~5.0.0",
"handlebars": "~4.7.8",
"nyc": "~17.1.0",
"p-event": "~4.2.0"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/futurestudio/hapi-rate-limitor#readme",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"keywords": [
"brute force",
"brute force protection",
"bruteforce",
"hapi",
"hapi.js",
"hapijs",
"limit",
"plugin",
"rate",
"rate limit",
"rate limiter",
"rate limiting",
"rate-limit"
],
"license": "MIT",
"main": "lib/index.js",
"types": "typings",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-rate-limitor.git"
},
"scripts": {
"coverage": "npm test",
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix",
"test": "nyc ava",
"test:single": "ava --match"
}
}