-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "express-joi-validate",
"version": "3.0.1",
"description": "Simple route validation middleware for Express using Joi",
"main": "./lib/validate.js",
"types": "./lib/validate.d.ts",
"scripts": {
"test": "mocha tests/validate-test.js",
"tsc": "tsc",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha tests/validate-test.js",
"coverage-ci": "npm run coverage && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinacious/express-joi-validate.git"
},
"keywords": [
"express",
"joi",
"middleware",
"validate",
"validation"
],
"author": "Tina Holly",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/hapi__joi": "^17.1.3",
"body-parser": "^1.18.3",
"codecov": "^3.1.0",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"supertest": "^4.0.0",
"tsc": "^1.20150623.0",
"typescript": "^3.9.6"
},
"resolutions": {
"handlebars": "v4.1.2"
},
"dependencies": {
"@hapi/joi": "^v17.1.1"
}
}