-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "joi-mongo-objectid",
"version": "0.0.1",
"description": "A Joi extension to validate and parse MongoDB ObjectId strings.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest"
},
"peerDependencies": {
"joi": ">=17.0.0",
"mongoose": ">=6.9.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/joi": "^17.2.2",
"jest": "^29.7.0",
"joi": "^17.13.3",
"mongoose": "^8.8.4",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"author": "kavingovind",
"license": "MIT",
"keywords": [
"joi",
"joi-mongo",
"validator",
"objectid",
"mongo",
"mongodb",
"mongoose",
"extension"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kavingovind/joi-mongo-objectid.git"
},
"bugs": {
"url": "https://github.com/kavingovind/joi-mongo-objectid/issues"
},
"homepage": "https://github.com/kavingovind/joi-mongo-objectid#readme"
}