-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "express-joi-validations",
"version": "0.1.0",
"description": "Express middleware to validate request (headers, params, query, body) using Joi",
"license": "MIT",
"keywords": [
"express-middleware",
"validation-middleware",
"joi-validation",
"request-validation",
"input-validation",
"data-validations",
"schema-validation",
"input-sanitization",
"custom-middleware",
"express",
"middleware",
"joi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattiamalonni/express-joi-validations.git"
},
"author": {
"name": "Mattia Malonni",
"email": "mattia.malonni@gmail.com"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/mattiamalonni/express-joi-validations/issues"
},
"homepage": "https://github.com/mattiamalonni/express-joi-validations#readme",
"scripts": {
"build": "npm i && tsup",
"deploy": "npm i && tsup && npm publish"
},
"dependencies": {
"express": "^4.19.2",
"joi": "^17.13.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.8",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.9.0",
"type-fest": "^4.18.1",
"typescript": "^5.4.5"
}
}