redhot
Version:
TypeScript Monorepo Management
91 lines (90 loc) • 2.5 kB
JSON
{
"name": "redhot",
"version": "0.0.3",
"description": "TypeScript Monorepo Management",
"main": "lib/cli.js",
"bin": {
"redhot": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylorS/redhot.git"
},
"keywords": [
"TypeScript",
"Monorepo",
"Lerna",
"Project",
"Management"
],
"author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TylorS/redhot/issues"
},
"homepage": "https://github.com/TylorS/redhot#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "node ./node_modules/.bin/validate-commit-msg"
}
},
"scripts": {
"test:lint": "eslint src/*/",
"test:unit": "istanbul cover _mocha -- --require buba/register",
"test": "npm run test:lint && npm run test:unit",
"commit": "git-cz",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"postchangelog": "git add CHANGELOG.md && git commit -m 'chore(CHANGELOG): append to changelog' && git push origin master",
"postpublish": "npm run changelog",
"release": "np --",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major"
},
"dependencies": {
"@types/mocha": "*",
"@types/node": "*",
"add-stream": "^1.0.0",
"commander": "^2.9.0",
"commitizen": "^2.8.6",
"conventional-changelog": "^1.1.0",
"editor": "^1.0.0",
"find-config": "^1.0.0",
"ghooks": "*",
"js-beautify": "^1.6.3",
"khaos": "^0.9.3",
"longest": "^1.0.1",
"mocha": "*",
"prompt-for": "^1.1.2",
"right-pad": "^1.0.1",
"shelljs": "^0.7.3",
"tempfile": "^1.1.1",
"ts-node": "*",
"validate-commit-msg": "*",
"winston": "^2.2.0",
"word-wrap": "^1.1.0"
},
"peerDependencies": {
"tslint": "*",
"typescript": "*"
},
"devDependencies": {
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"ghooks": "^1.3.2",
"greenkeeper-postpublish": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.2",
"np": "^2.9.0",
"power-assert": "^1.4.1",
"validate-commit-msg": "^2.7.0"
}
}