-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "hapi-rate-limit",
"version": "8.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": ">=20.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.1",
"@hapi/catbox-memory": "^6.0.2",
"@hapi/hoek": "^11.0.7",
"joi": "^18.0.0"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/hapi": "^21.4.2",
"@hapi/lab": "^26.0.0",
"git-validate": "^2.2.4",
"standard": "^17.1.2"
}
}