This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
forked from mkg20001/relish
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "@condiments/relish",
"version": "6.0.0",
"description": "Better error messages for Hapi.js Joi validation. This is branched from dialexa/relish since that appears abandoned.",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "npm run lint && lab -r console -v -t 100 -a @hapi/code",
"test-ci": "lab -r lcov -t 100 -a @hapi/code | ./node_modules/.bin/coveralls",
"test-cov-html": "lab -r html -o coverage.html",
"generate-docs": "node generate-docs.js",
"version": "npm run generate-docs && git add README.md API.md",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
"@hapi/hapi": ">=20",
"joi": ">=17"
},
"author": "gentleman-turk",
"contributors": [
"Robert Hernandez <[email protected]>",
"Maciej Krüger <[email protected]>",
"Andrew Turner <[email protected]>"
],
"license": "ISC",
"keywords": [
"hapi",
"@hapi/hapi",
"joi",
"@hapi/joi",
"error",
"message",
"error message",
"validation",
"custom error message",
"better error message",
"joi custom error message",
"joi error messages",
"relish"
],
"repository": "[email protected]:gentleman-turk/relish.git",
"homepage": "https://github.com/gentleman-turk/relish",
"bugs": "https://github.com/gentleman-turk/relish/issues",
"dependencies": {
"@hapi/hoek": "~9.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "~7.16.5",
"@hapi/code": "~8.0.5",
"@hapi/hapi": "~20.2.1",
"@hapi/lab": "~24.5.1",
"coveralls": "~3.1.1",
"eslint": "~8.7.0",
"joi": "~17.5.0",
"markdown-toc": "~1.2.0"
}
}