UNPKG

redhot

Version:

TypeScript Monorepo Management

37 lines (36 loc) 988 B
{ "private": true, "name": "{{ packageName }}", "version": "0.0.0", "description": "{{ description }}", "repository": { "type": "git", "url": "git+https://github.com/{{ githubRepo }}.git" }, "author": "{{ authorName }} <{{ authorEmail }}> (https://github.com/{{ githubUsername }})", "license": "MIT", "bugs": { "url": "https://github.com/{{ githubRepo }}/issues" }, "homepage": "https://github.com/{{ githubRepo }}#readme", "config": { "ghooks": { "commit-msg": "node ./node_modules/.bin/validate-commit-msg" }, "validate-commit-msg": { "types": ["feat", "fix", "docs", "style", "refactor", "perf", "test", "chore", "revert", "release"] } }, "scripts": { "lint": "redhot lint", "test": "redhot test", "build": "redhot build", "commit": "redhot commit", "release": "redhot release" }, "devDependencies": { "redhot": "^{{ redhotVersion }}", "tslint": "next", "typescript": "next" } }