-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 875 Bytes
/
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
{
"name": "@reis/joi-luxon",
"description": "A Joi extension to automatically convert ISO date strings to Luxon DateTime objects",
"version": "3.0.0",
"type": "module",
"homepage": "https://github.com/adamreisnz/joi-luxon#readme",
"author": {
"name": "Adam Reis",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamreisnz/joi-luxon.git"
},
"bugs": {
"url": "https://github.com/adamreisnz/joi-luxon/issues"
},
"keywords": [
"joi",
"extension",
"luxon",
"datetime",
"date"
],
"engines": {
"node": ">=18"
},
"main": "index.js",
"peerDependencies": {
"joi": ">=17.9.1",
"luxon": ">=3.3.0"
},
"scripts": {
"postversion": "git push && npm publish"
}
}