-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
53
54
55
56
57
58
59
60
61
62
{
"name": "@exortek/fastify-mongo-sanitize",
"version": "1.2.1",
"description": "MongoDB query sanitizer for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"format": "prettier --write \"**/*.{js,ts,json}\"",
"test:tsd": "tsd",
"test:node": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExorTek/fastify-mongo-sanitize.git"
},
"keywords": [
"fastify",
"mongodb",
"sanitize",
"mongoose",
"fastify-plugin",
"data-validation",
"input-sanitization",
"security",
"web-application",
"nodejs",
"typescript",
"middleware",
"api-security",
"query-sanitization",
"no-sql",
"fastify-middleware",
"mongodb-sanitizer"
],
"author": "ExorTek - https://github.com/ExorTek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExorTek/fastify-mongo-sanitize/issues"
},
"homepage": "https://github.com/ExorTek/fastify-mongo-sanitize#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.9.2",
"devDependencies": {
"fastify": "npm:fastify@5.3.3",
"fastify4": "npm:fastify@4.29.1",
"prettier": "^3.5.3",
"tsd": "^0.32.0"
},
"dependencies": {
"fastify-plugin": "^5.0.1"
},
"files": [
"index.js",
"types/index.d.ts",
"constants.js",
"helpers.js",
"FastifyMongoSanitizeError.js"
]
}