{
	"name": "@plq/is",
	"version": "1.6.0",
	"description": "Small utility package that provides a set of functions to check if a given argument is of a certain type",
	"main": "lib/index.js",
	"types": "lib/index.d.ts",
	"files": [
		"lib"
	],
	"engines": {
		"node": ">=16.0.0"
	},
	"scripts": {
		"lint": "eslint ./src/**/*.ts",
		"test": "jest",
		"build": "tsc",
		"release": "dotenv release-it"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Akurganow/is.git"
	},
	"release-it": {
		"hooks": {
			"before:init": [
				"npm run lint",
				"npm test",
				"npm run build"
			],
			"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
		},
		"plugins": {
			"@release-it/conventional-changelog": {
				"preset": "conventionalcommits",
				"infile": "CHANGELOG.md"
			}
		}
	},
	"keywords": [
		"is",
		"check",
		"test",
		"type",
		"types",
		"javascript",
		"typescript"
	],
	"author": "Alexander Kurganov <a.kurganow@gmail.com>",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/Akurganow/is/issues"
	},
	"homepage": "https://github.com/Akurganow/is#readme",
	"devDependencies": {
		"@release-it/conventional-changelog": "^8.0.1",
		"@types/jest": "^29.5.5",
		"@typescript-eslint/eslint-plugin": "^6.7.4",
		"dotenv-cli": "^7.3.0",
		"eslint": "^8.51.0",
		"jest": "^29.7.0",
		"release-it": "^17.0.0",
		"ts-jest": "^29.1.1",
		"ts-node": "^10.9.1",
		"typescript": "^5.2.2"
	}
}
