forked from validatorjs/validator.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.05 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
{ "name": "validator",
"description": "String validation and sanitization",
"version": "3.19.0",
"homepage": "http://github.com/chriso/validator.js",
"keywords": [
"validator", "validation", "validate", "sanitization",
"sanitize", "sanitisation", "sanitise", "assert"
],
"author": "Chris O'Hara <[email protected]>",
"main": "validator.js",
"bugs": {
"url": "http://github.com/chriso/validator.js/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/chriso/validator.js.git"
},
"devDependencies": {
"mocha": "latest",
"istanbul": "latest",
"jshint": "latest",
"uglify-js": "latest",
"coveralls": "latest",
"contextify": "latest"
},
"scripts": {
"test": "./node_modules/.bin/_mocha --reporter spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"engines": { "node" : ">= 0.10" },
"licenses": [
{ "type": "MIT"
, "url": "http://github.com/chriso/validator.js/raw/master/LICENSE" }
]
}