{ "name": "fontship", "version": "0.10.0", "description": "A font development toolkit and collaborative work flow", "main": "fontship", "scripts": { "test": "make test", "lint": "make lint", "release": "commit-and-tag-version", "prepare": "husky" }, "repository": { "type": "git", "url": "git+https://github.com/theleagueof/fontship.git" }, "author": "Caleb Maclennan ", "license": "GPL-3.0-only", "bugs": { "url": "https://github.com/theleagueof/fontship/issues" }, "homepage": "https://github.com/theleagueof/fontship", "devDependencies": { "@commitlint/cli": "^19.5", "@commitlint/config-conventional": "^19.5", "@commitlint/prompt": "^19.5", "@iarna/toml": "^2.2", "commitizen": "^4.3", "conventional-changelog-cli": "^5.0", "husky": "^9.9", "commit-and-tag-version": "^12.4", "yaml": "^2.5" }, "config": { "commitizen": { "path": "@commitlint/prompt" } }, "commit-and-tag-version": { "bumpFiles": [ { "filename": "action.yml", "updater": "build-aux/action-updater.js" }, { "filename": "package.json", "type": "json" }, { "filename": "Cargo.toml", "updater": "build-aux/cargo-updater.js" } ], "scripts": { "postbump": "cargo generate-lockfile --offline", "postcommit": "git add -u Cargo.lock && git commit --amend --no-edit" }, "infile": "CHANGELOG.md", "types": [ { "type": "feat", "section": "New Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "chore", "section": "Behind the Scenes", "hidden": true }, { "type": "docs", "hidden": true }, { "type": "style", "hidden": true }, { "type": "refactor", "section": "Changes", "hidden": true }, { "type": "perf", "section": "Optimizations" }, { "type": "test", "hidden": true } ] } }