-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "express-nosql-sanitizer",
"version": "1.1.1",
"description": "An Express.js middleware library to automatically sanitize JSON bodies for use with MongoDB libraries.",
"author": "RobTheFiveNine",
"repository": {
"type": "git",
"url": "https://github.com/RobTheFiveNine/express-nosql-sanitizer.git"
},
"bugs": "https://github.com/RobTheFiveNine/express-nosql-sanitizer.git",
"license": "MPL-2.0",
"keywords": [
"mongodb",
"nosql",
"injection",
"security",
"sanitization"
],
"main": "src/lib/express-nosql-sanitizer.js",
"types": "src/lib/express-nosql-sanitizer.d.ts",
"files": [
"src"
],
"packageManager": "[email protected]",
"devDependencies": {
"@yarnpkg/sdks": "^3.0.0-rc.22",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.1.2",
"typescript": "^4.8.4"
},
"scripts": {
"lint": "eslint src/",
"test": "jest -c jest.config.js",
"test:ci": "jest -c jest.config.js --coverage"
}
}