-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "express-validate-schema",
"version": "2.2.0",
"description": "a simple express middleware to validate the request/response objects (body, params, querystring and headers) againts an object schema with joi",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"coverage:open": "open coverage/index.html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:check": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard --fix && nyc --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaquimserafim/express-validate-schema.git"
},
"keywords": [
"express",
"middleware",
"schema",
"validation",
"body",
"payload",
"params",
"querystring",
"headers",
"request",
"response"
],
"author": "@JoaquimSerafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/express-validate-schema/issues"
},
"homepage": "https://github.com/joaquimserafim/express-validate-schema#readme",
"devDependencies": {
"body-parser": "^1.17.2",
"coveralls": "^2.13.1",
"express": "^4.15.3",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"pre-commit": "^1.2.2",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"dependencies": {
"between-range": "^1.0.0",
"joi": "^10.6.0"
},
"engines": {
"node": ">=6.1"
},
"nyc": {
"include": [
"index.js"
]
},
"pre-commit": [
"test",
"coverage:check"
]
}