validate-conventional-commit
Version:
Smallest simplest conventional commit validator to use with eg Husky
49 lines (48 loc) • 1.2 kB
JSON
{
"name": "validate-conventional-commit",
"version": "2.0.0",
"description": "Smallest simplest conventional commit validator to use with eg Husky",
"homepage": "http://github.com/voxpelli/validate-conventional-commit",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/validate-conventional-commit.git"
},
"keywords": [
"husky",
"conventional-commit",
"commitlint",
"commit",
"git",
"commit-msg"
],
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"license": "0BSD",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"bin": {
"validate-conventional-commit": "cli.js"
},
"files": [
"cli.js"
],
"scripts": {
"check": "run-p check:*",
"check:lint": "eslint",
"check:tsc": "tsc",
"prepare": "husky",
"test": "run-s check test:*",
"test-ci": "run-s test:*",
"test:node": "node --test test/cli.test.js"
},
"devDependencies": {
"@types/node": "^20.19.43",
"@voxpelli/eslint-config": "^25.1.0",
"@voxpelli/tsconfig": "^16.2.1",
"eslint": "^9.39.5",
"husky": "^9.1.7",
"npm-run-all2": "^9.0.3",
"typescript": "~6.0.0"
}
}