lerna-changelog
Version:
Generate a changelog for a lerna monorepo
107 lines (106 loc) • 2.63 kB
JSON
{
"name": "lerna-changelog",
"version": "2.2.0",
"description": "Generate a changelog for a lerna monorepo",
"keywords": [
"changelog",
"lerna"
],
"homepage": "https://github.com/lerna/lerna-changelog#readme",
"bugs": {
"url": "https://github.com/lerna/lerna-changelog/issues"
},
"license": "MIT",
"author": "Bo Borgerson <gigabo@gmail.com>",
"main": "index.js",
"bin": {
"lerna-changelog": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna-changelog.git"
},
"scripts": {
"build": "yarn clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "yarn lint -- --fix",
"lint": "eslint src --ext ts --format stylish",
"prepack": "yarn build",
"prettier": "prettier --write 'src/**/*.ts'",
"release": "release-it",
"test": "jest",
"test-ci": "yarn build && yarn test",
"watch": "yarn build -- --watch"
},
"dependencies": {
"chalk": "^4.0.0",
"cli-highlight": "^2.1.11",
"execa": "^5.0.0",
"hosted-git-info": "^4.0.0",
"make-fetch-happen": "^9.0.0",
"p-map": "^3.0.0",
"progress": "^2.0.0",
"yargs": "^17.1.0"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "14.17.21",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"fs-extra": "10.0.0",
"jest": "27.2.5",
"jest-runner-eslint": "0.11.1",
"prettier": "2.4.1",
"release-it": "14.11.6",
"release-it-lerna-changelog": "3.1.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"changelog": {
"repo": "lerna/lerna-changelog",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
},
"jest": {
"projects": [
{
"displayName": "test",
"roots": [
"src"
],
"preset": "ts-jest"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"moduleFileExtensions": [
"ts"
],
"testMatch": [
"<rootDir>/src/**/*.ts"
]
}
]
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "es5"
}
}