therepo/packages/conventional/package.json
M. George Hansen 5f519f54f2
feat(@websnacksjs/conventional): initial implementation
`@websnacksjs/conventional` is a cli program which can be used with
`husky` & git hooks to enforce that commit messages adhere to the
conventional commits standard.
2025-08-19 18:31:34 +12:00

30 lines
693 B
JSON

{
"name": "@websnacksjs/conventional",
"version": "0.1.0",
"description": "A conventional commit cli application",
"keywords": [
"websnacks",
"conventional-commit",
"git"
],
"author": "M. George Hansen <mgeorge@technopolitica.com>",
"license": "Apache-2.0",
"type": "module",
"bin": "bin/conventional.js",
"exports": {
".": "./dist/lib/index.js"
},
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "tsc --build",
"test": "tsc --noEmit --project tests/tsconfig.json && node --experimental-strip-types --disable-warning=ExperimentalWarning --test",
"pretest": "npm run build",
"prepack": "npm run build"
},
"devDependencies": {
"ts-poet": "^6.12.0"
}
}