UNPKG

@brickjs-fe/commit-config

Version:

BrickJs 提交规范配置包 - 包含 Commitlint、Commitizen 和 Husky 配置

74 lines (73 loc) 1.78 kB
{ "name": "@brickjs-fe/commit-config", "version": "0.0.3", "description": "BrickJs 提交规范配置包 - 包含 Commitlint、Commitizen 和 Husky 配置", "main": "commitlint.js", "type": "module", "exports": { ".": "./commitlint.js", "./cz-config.js": "./cz-config.js" }, "bin": { "brick-commit-setup": "./bin/setup.js" }, "files": [ "commitlint.js", "cz-config.js", "bin/setup.js", "README.md", "LICENSE" ], "scripts": { "postinstall": "node ./bin/setup.js", "test": "jest", "test:watch": "jest --watch", "lint": "eslint . --ext .js,.ts,.vue", "format": "prettier --write .", "release": "pnpm exec brick release --skip-build", "release:dry-run": "pnpm exec brick release --dry-run --skip-build", "commit": "cz" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "keywords": [ "commitlint", "commitizen", "husky", "commit", "conventional", "config", "brickjs" ], "author": "brickFE <brickfe@163.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/brickFE/brickjs.git", "directory": "packages/brick-commit-config" }, "bugs": { "url": "https://github.com/brickFE/brickjs/issues" }, "homepage": "https://github.com/brickFE/brickjs#readme", "devDependencies": { "@brickjs-fe/brick-cli": "workspace:^" }, "peerDependencies": { "@commitlint/cli": ">=19.0.0", "@commitlint/config-conventional": ">=19.0.0", "commitizen": ">=4.3.0", "husky": ">=9.0.0" }, "engines": { "node": ">=20.10.0", "pnpm": ">=10.11.0" }, "config": { "commitizen": { "path": "@brickjs-fe/commit-config/cz-config.js" } } }