forked from validatorjs/validator.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 989 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": "4.0.5",
"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 ./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" },
"license": "MIT"
}