github-changelog
Version:
Generate a changelog from GitHub pull requests
81 lines • 2.19 kB
JSON
{
"name": "github-changelog",
"version": "2.1.4",
"description": "Generate a changelog from GitHub pull requests",
"keywords": [
"changelog",
"github"
],
"homepage": "https://github.com/release-plan/github-changelog#readme",
"bugs": {
"url": "https://github.com/release-plan/github-changelog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/release-plan/github-changelog.git"
},
"license": "MIT",
"author": "Bo Borgerson <gigabo@gmail.com>",
"main": "index.js",
"bin": {
"github-changelog": "bin/cli.js"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"dependencies": {
"@manypkg/get-packages": "^2.2.0",
"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/node": "22.10.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"execa-latest": "npm:execa@^9.6.0",
"fs-extra": "10.1.0",
"prettier": "2.8.8",
"release-plan": "^0.17.0",
"rimraf": "3.0.2",
"typescript": "5.0.4",
"vitest": "^3.0.4"
},
"engines": {
"node": "18.* || 20.* || >= 22"
},
"changelog": {
"repo": "release-plan/github-changelog",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
},
"cacheDir": ".changelog"
},
"scripts": {
"build": "pnpm clean && tsc",
"changelog": "node ./bin/cli.js",
"clean": "rimraf lib",
"fix": "pnpm lint --fix",
"lint": "eslint src --ext ts --format stylish",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "vitest",
"test-ci": "pnpm build && pnpm test",
"watch": "pnpm build --watch"
}
}