-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 879 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 879 Bytes
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
{
"name": "express-mongo-sanitize",
"version": "1.0.0",
"description": "Sanitize your express payload to prevent MongoDB operator injection.",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test.js"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiznool/express-mongo-sanitize.git"
},
"keywords": [
"mongodb",
"express",
"middleware",
"operator",
"injection",
"security"
],
"author": "Tom Spencer <fiznool@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiznool/express-mongo-sanitize/issues"
},
"homepage": "https://github.com/fiznool/express-mongo-sanitize#readme",
"devDependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3",
"mocha": "^2.3.3",
"supertest": "^1.1.0"
}
}