-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 926 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
{
"name": "request-validator",
"version": "0.3.3",
"description": "Schema-based request validation middleware for express and connect.",
"author": "Veli Pehlivanov <bugventure@gmail.com>",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage"
},
"license": "MIT",
"homepage": "https://github.com/bugventure/request-validator",
"repository": {
"type": "git",
"url": "git://github.com/bugventure/request-validator.git"
},
"bugs": "https://github.com/bugventure/request-validator/issues",
"keywords": [
"request",
"schema",
"validation",
"express",
"middleware"
],
"devDependencies": {
"mocha": "1.x",
"sinon": "1.10.3",
"coveralls": "2.x",
"istanbul": "0.x"
}
}