@kazupon/lerna-changelog
Version:
Generate a changelog for a lerna monorepo
129 lines (128 loc) • 3.58 kB
JSON
{
"name": "@kazupon/lerna-changelog",
"description": "Generate a changelog for a lerna monorepo",
"version": "4.3.0",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"bin": {
"lerna-changelog": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/kazupon/lerna-changelog/issues"
},
"changelog": {
"labels": {
"Type: Feature": ":star: Features",
"Type: Bug": ":bug: Bug Fixes",
"Type: Security": ":lock: Security Fixes",
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
"Type: Improvement": ":zap: Improvement Features",
"Type: Breaking": ":boom: Breaking Change",
"Type: Deprecated": ":warning: Deprecated Features",
"Type: I18n": ":globe_with_meridians: Internationalization",
"Type: A11y": ":wheelchair: Accessibility",
"Type: Documentation": ":pencil: Documentation"
}
},
"dependencies": {
"chalk": "^4.1.1",
"cli-highlight": "^2.1.11",
"execa": "^5.1.1",
"hosted-git-info": "^4.0.2",
"make-fetch-happen": "^7.1.1",
"p-map": "^3.0.0",
"progress": "^2.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^3.1.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^8.1.0",
"husky": "^7.0.0",
"jest": "^27.0.5",
"lerna-changelog": "^1.0.1",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"secretlint": "^3.2.0",
"shipjs": "^0.23.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"typescript-eslint-language-service": "^4.1.4",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">= 12"
},
"files": [
"bin/cli.js",
"lib"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/kazupon/lerna-changelog#readme",
"jest": {
"projects": [
{
"displayName": "test",
"roots": [
"src"
],
"preset": "ts-jest"
}
]
},
"keywords": [
"changelog",
"lerna"
],
"license": "MIT",
"lint-staged": {
"*.{js,json,html}": [
"prettier --config .prettierrc --ignore-path .prettierignore --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --config .prettierrc --ignore-path .prettierignore --parser=typescript --write"
],
"*": [
"secretlint"
]
},
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kazupon/lerna-changelog.git"
},
"scripts": {
"build": "yarn clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "npm-run-all --parallel lint:eslint:fix format:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"format:fix": "yarn format --write",
"lint": "npm-run-all --parallel lint:eslint lint:secret",
"lint:eslint": "eslint ./src --ext .ts",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:secret": "npx secretlint \"**/*\"",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"test": "jest",
"test-ci": "yarn build && yarn test",
"watch": "yarn build -- --watch"
},
"types": "lib/index.d.ts"
}