github-changelog
Version:
Generate a changelog from GitHub pull requests
105 lines • 2.79 kB
JSON
{
"name": "github-changelog",
"version": "1.2.0",
"description": "Generate a changelog from GitHub pull requests",
"keywords": [
"changelog",
"github"
],
"homepage": "https://github.com/embroider-build/github-changelog#readme",
"bugs": {
"url": "https://github.com/embroider-build/github-changelog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embroider-build/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"
},
"jest": {
"projects": [
{
"displayName": "test",
"roots": [
"src"
],
"preset": "ts-jest"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"moduleFileExtensions": [
"ts"
],
"testMatch": [
"<rootDir>/src/**/*.ts"
]
}
]
},
"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/jest": "29.5.10",
"@types/node": "20.10.2",
"@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",
"fs-extra": "10.1.0",
"jest": "28.1.3",
"jest-runner-eslint": "2.1.2",
"prettier": "2.8.8",
"release-plan": "^0.11.0",
"rimraf": "3.0.2",
"ts-jest": "29.1.1",
"typescript": "5.0.4"
},
"packageManager": "pnpm@8.15.9+sha512.499434c9d8fdd1a2794ebf4552b3b25c0a633abcee5bb15e7b5de90f32f47b513aca98cd5cfd001c31f0db454bc3804edccd578501e4ca293a6816166bbd9f81",
"engines": {
"node": "12.* || 14.* || >= 16"
},
"changelog": {
"repo": "embroider-build/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": "jest",
"test-ci": "pnpm build && pnpm test",
"watch": "pnpm build -- --watch"
}
}