{
	"name": "@stranerd/validate",
	"version": "4.0.0-alpha.0",
	"description": "A lightweight package with definitions for various validation rules, and helper services to consume said rules.",
	"main": "lib/index.js",
	"sideEffects": false,
	"scripts": {
		"build": "tsc --project tsconfig.build.json",
		"lint": "eslint src/ --ext .ts --fix",
		"test": "jest",
		"release": "standard-version",
		"prepare": "husky install"
	},
	"keywords": [
		"typescript",
		"schema",
		"validation",
		"type",
		"inference"
	],
	"author": "Kevin Izuchukwu",
	"license": "ISC",
	"devDependencies": {
		"@commitlint/cli": "^17.4.3",
		"@commitlint/config-conventional": "^17.4.3",
		"@types/jest": "^29.4.0",
		"@types/node": "^18.13.0",
		"@typescript-eslint/eslint-plugin": "^5.52.0",
		"@typescript-eslint/parser": "^5.52.0",
		"eslint": "^8.34.0",
		"eslint-plugin-jest": "^27.2.1",
		"eslint-plugin-promise": "^6.1.1",
		"husky": "^8.0.3",
		"jest": "^29.4.2",
		"standard-version": "^9.5.0",
		"ts-jest": "^29.0.5",
		"typescript": "^4.9.5"
	},
	"files": [
		"LICENSE",
		"CHANGELOG.md",
		"README.md",
		"bin",
		"lib/src"
	],
	"repository": {
		"url": "git://github.com/stranerd/validate.git"
	},
	"publishConfig": {
		"registry": "https://registry.npmjs.org/"
	},
	"commitlint": {
		"extends": [
			"@commitlint/config-conventional"
		]
	},
	"dependencies": {
		"url-regex-safe": "^3.0.0"
	},
	"standard-version": {}
}
