UNPKG

git-notify

Version:

Communicate important updates to your team via git commit messages

80 lines (79 loc) 1.7 kB
{ "version": "0.2.3", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "repository": "https://github.com/jevakallio/git-notify", "description": "Communicate important updates to your team via git commit messages", "contributors": [ "@jevakallio" ], "keywords": [ "git", "hook", "message", "notify", "husky" ], "files": [ "dist", "bin" ], "engines": { "node": ">=10" }, "bin": { "git-notify": "bin/git-notify.js" }, "scripts": { "start": "tsdx watch --target=node --format=cjs", "build": "tsdx build --target=node --format=cjs", "test": "echo tsdx text", "lint": "tsdx lint", "prepare": "yarn build", "size": "size-limit", "analyze": "size-limit --why" }, "dependencies": { "boxen": "^5.0.0", "chalk": "^4.1.0", "detect-newline": "^3.1.0", "git-raw-commits": "^2.0.10", "meow": "^9.0.0", "simple-git": "^2.35.2" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "git-notify", "author": "Jani Eväkallio", "module": "dist/git-notify.esm.js", "size-limit": [ { "path": "dist/git-notify.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/git-notify.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.9.2", "@types/git-raw-commits": "^2.0.0", "husky": "^5.1.1", "size-limit": "^4.9.2", "tsdx": "^0.14.1", "tslib": "^2.1.0", "typescript": "^4.2.2" } }