-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
46 lines (46 loc) · 1.57 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
{
"name": "hapi-rate-limiter",
"version": "6.0.0",
"description": "Hapi-plugin to handle rate-limiting",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test nyc _mocha -- test --recursive --timeout 30000",
"lint": "eslint .",
"enforce": "nyc check-coverage --statement 100 --branch 100 --function 100 --lines 100",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/lob/hapi-rate-limiter.git"
},
"keywords": [
"hapi"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lob/hapi-rate-limiter/issues"
},
"homepage": "https://github.com/lob/hapi-rate-limiter",
"dependencies": {},
"devDependencies": {
"@hapi/hapi": "^20.2.1",
"bluebird": "^3.4.0",
"chai": "^4.3.4",
"create-boom-error": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-lob": "^5.2.0",
"generate-changelog": "^1.0.2",
"@hapi/basic": "^5.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"redis": "^3.1.2",
"sinon": "^11.1.2"
},
"peerDependencies": {
"@hapi/hapi": ">=20",
"redis": "^3.0.0"
}
}