-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 934 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 934 Bytes
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
{
"name": "@momsfriendlydevco/joyful",
"version": "1.2.0",
"description": "Tiny wrapper around Joi to provide easy validation + errors",
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"keywords": [
"joi",
"validation"
],
"type": "module",
"exports": {
".": "./src/joyful.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/Joyful.git"
},
"author": "Matt Carter <matt@mfdc.biz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/Joyful/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/Joyful#readme",
"engineStrict": true,
"engines": {
"node": ">=16.14.0"
},
"dependencies": {
"joi": "^18.0.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@momsfriendlydevco/eslint-config": "^2.3.1",
"chai": "^6.0.1",
"eslint": "^9.35.0",
"mocha": "^11.7.2"
}
}