-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "express-mongo-sanitize",
"version": "2.2.0",
"description": "Sanitize your express payload to prevent MongoDB operator injection.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint \"**/*.js\" --fix",
"prettier": "prettier --write .",
"test": "tsd && prettier --check . && mocha test.js",
"type-check": "tsd"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiznool/express-mongo-sanitize.git"
},
"keywords": [
"mongodb",
"express",
"middleware",
"operator",
"injection",
"security"
],
"author": "Tom Spencer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiznool/express-mongo-sanitize/issues"
},
"homepage": "https://github.com/fiznool/express-mongo-sanitize#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"body-parser": "^1.19.1",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"express": "^4.17.2",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"supertest": "^6.2.1",
"tsd": "^0.19.1"
}
}