-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "joi-relative-date-validator",
"version": "1.1.2",
"description": "Joi extension for relative date validation",
"main": "built/index.js",
"scripts": {
"build": "rimraf built && tsc",
"tslint": "tslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install",
"prepublishOnly": "npm run tslint && npm test && npm run build"
},
"author": "Ninad Mahajan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.5.2",
"babel-jest": "^25.1.0",
"cz-conventional-changelog": "^3.0.1",
"husky": "^7.0.4",
"jest": "^27.4.5",
"rimraf": "^3.0.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
},
"dependencies": {
"moment": "^2.29.4"
},
"peerDependencies": {
"joi": "^17.5.0"
},
"files": [
"built"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Ninad89/joi-relative-date-validator"
},
"homepage": "https://github.com/Ninad89/joi-relative-date-validator",
"keywords": [
"joi",
"date",
"relative date",
"validation",
"api",
"express"
]
}