forked from davidmarkclements/overload-protection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "overload-protection",
"version": "1.2.2",
"main": "index.js",
"scripts": {
"test": "tap test",
"lint": "standard",
"ci": "npm run lint && npm run cov",
"cov": "tap --cov test",
"covr": "tap --coverage-report=html test",
"benchmarks": "ls benchmarks | while read l; do node benchmarks/$l; done"
},
"pre-commit": [
"test",
"lint"
],
"keywords": [
"load shedding",
"overload protection",
"production monitoring",
"503",
"Service Unavailable",
"Server Unavailable",
"HTTP 503",
"heavy load",
"load",
"protection",
"shedding",
"express",
"fastify",
"http",
"koa",
"restify"
],
"author": "David Mark Clements <[email protected]>",
"maintainers": [
"Vin Souza <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"express": "^4.17.1",
"koa": "^2.11.0",
"koa-router": "^7.4.0",
"pre-commit": "^1.2.2",
"restify": "^8.5.1",
"standard": "^10.0.3",
"tap": "^10.7.2"
},
"dependencies": {
"autocannon": "^4.4.1",
"loopbench": "^1.2.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidmarkclements/overload-protection.git"
},
"bugs": {
"url": "https://github.com/davidmarkclements/overload-protection/issues"
},
"homepage": "https://github.com/davidmarkclements/overload-protection#readme",
"description": "Load detection and shedding capabilities for http, express, restify and koa"
}