-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "joi-decorator",
"version": "1.1.2",
"description": "Decorator based interface for Joi",
"author": "Jean-Baptiste Pionnier",
"license": "MIT",
"repository": "jbpionnier/joi-decorator",
"keywords": [
"joi",
"validate",
"validator",
"validation",
"decorator",
"schema",
"typescript"
],
"engines": {
"node": ">= 14.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"clean": "rimraf dist",
"build": "tsc",
"prepare": "npm run lint && npm run clean && npm run build"
},
"dependencies": {
"joi": "^17.13.3"
},
"peerDependencies": {
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@jbpionnier/eslint-config-node": "^1.7.9",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "~8.57.1",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
}
}