-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 975 Bytes
/
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
50
{
"name": "makesure",
"version": "2.0.0",
"description": "JavaScript object validation made easy.",
"main": "index.js",
"scripts": {
"test": "make test"
},
"repository": "sadjow/makesure",
"keywords": [
"error",
"errors",
"form",
"makesure",
"manager",
"nested",
"object",
"sanitization",
"sanitize",
"sanitizer",
"sanitizes",
"sanitizing",
"schema",
"validate",
"validation",
"validations",
"validator"
],
"author": "Sadjow Leão <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sadjow/makesure/raw/master/LICENSE"
}
],
"devDependencies": {
"body-parser": "^1.9.2",
"diacritics": "^1.2.1",
"express": "^4.10.0",
"mocha": "^2.0.1",
"should": "^4.1.0",
"sinon": "^1.11.1",
"supertest": "^0.14.0"
},
"dependencies": {
"async": "^0.9.0",
"merge": "^1.2.0",
"validator": "^3.22.1"
}
}