forked from wraithgar/hapi-rate-limit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "hapi-rate-limit",
"version": "6.0.0",
"description": "Rate limiting plugin for hapi",
"main": "index.js",
"scripts": {
"test": "lab -a @hapi/code -t 100 -v -e test",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/wraithgar/hapi-rate-limit.git"
},
"keywords": [
"hapi",
"rate",
"limit"
],
"author": "Gar <gar+code@danger.computer>",
"license": "MIT",
"engines": {
"node": "^14.0.0 || ^16.0.0 || ^18.0.0"
},
"bugs": {
"url": "https://github.com/wraithgar/hapi-rate-limit/issues"
},
"pre-commit": [
"test"
],
"homepage": "https://github.com/wraithgar/hapi-rate-limit#readme",
"peerDependencies": {
"@hapi/hapi": ">=18.0.0"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/catbox-memory": "^6.0.0",
"@hapi/hoek": "^10.0.0",
"joi": "^17.4.0"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"@hapi/code": "^9.0.0",
"@hapi/hapi": "^21.0.0",
"@hapi/lab": "^25.0.1",
"git-validate": "^2.2.4",
"standard": "^17.0.0"
}
}