forked from validatorjs/validator.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 899 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
{ "name": "validator",
"description": "String validation and sanitization",
"version": "3.1.0",
"homepage": "http://github.com/chriso/node-validator",
"keywords": [
"validator", "validation", "validate", "sanitization",
"sanitize", "sanitisation", "sanitise", "assert"
],
"author": "Chris O'Hara <[email protected]>",
"main": "validator.js",
"bugs": {
"url": "http://github.com/chriso/node-validator/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/chriso/node-validator.git"
},
"scripts": {
"test": "./node_modules/.bin/_mocha --reporter spec"
},
"devDependencies": {
"mocha": "latest",
"istanbul": "latest",
"jshint": "latest",
"uglify-js": "latest"
},
"engines": { "node" : ">= 0.8" },
"licenses": [
{ "type": "MIT"
, "url": "http://github.com/chriso/node-validator/raw/master/LICENSE" }
]
}