-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.12 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
50
51
52
53
54
55
{
"name": "valida",
"description": "Valida - A lightweight sanitizer and validator library for Node.js",
"version": "2.4.1",
"author": {
"name": "Eduardo Nunes",
"email": "esnunes@gmail.com"
},
"scripts": {
"test": "NODE_ENV=test mocha --report spec --recursive --watch-extensions .spec.js ./spec"
},
"contributors": [
{
"name": "Eduardo Nunes",
"email": "esnunes@gmail.com"
}
],
"dependencies": {
"async": "^0.9.0",
"rsvp": "^3.0.14",
"titlecase": "^1.1.2",
"upper-case-first": "^1.1.2"
},
"keywords": [
"validation",
"validator",
"validate",
"sanitization",
"sanitisation",
"sanitizer",
"sanitiser",
"lightweight"
],
"repository": {
"type": "git",
"url": "http://github.com/esnunes/valida.git"
},
"main": "lib/index",
"engines": {
"node": ">= 0.10.7"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/esnunes/valida/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/esnunes/valida/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^7.1.1"
}
}