-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "@cityssm/express-abuse-points",
"version": "3.0.0",
"description": "Express.js middleware for tracking and blocking abusive behaviour.",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node --test",
"coverage": "c8 node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/express-abuse-points.git"
},
"keywords": [
"express",
"expressjs",
"middleware",
"security",
"abuse",
"block"
],
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/express-abuse-points/issues"
},
"homepage": "https://github.com/cityssm/express-abuse-points#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^5.0.0",
"@types/node": "^22.7.4",
"eslint-config-cityssm": "^10.1.1",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"exit-hook": "^4.0.0",
"express": "^4.21.0",
"is-ip": "^5.0.1"
}
}