-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "infi-validator",
"version": "1.1.1",
"author": "Piotr Sobuś",
"description": "A simple request validator for Express.js apps",
"main": "index.js",
"license": "MIT",
"keywords": [
"xss",
"nosql",
"nodejs",
"request",
"express",
"validator",
"validation",
"no-sql injection",
"express-validator",
"express-validation"
],
"homepage": "https://github.com/gitsobek/infi-validator#README",
"repository": {
"type": "git",
"url": "git://github.com/gitsobek/infi-validator.git"
},
"bugs": {
"url": "https://github.com/gitsobek/infi-validator/issues"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "jest --config ./jest.config.js",
"test:coverage": "jest --config ./jest.config.js --coverage"
},
"dependencies": {
"chalk": "^4.0.0",
"lodash": "^4.17.15",
"moment": "^2.25.3",
"mongoose": "^5.9.11",
"xss": "^1.0.6"
},
"devDependencies": {
"coveralls": "^3.1.0",
"express": "^4.17.1",
"jest": "^26.0.0",
"supertest": "^4.0.2"
}
}