UNPKG

@cjbarth/github-release-notes

Version:

Create a release from a tag and uses issues or commits to creating the release notes. It also can generate a CHANGELOG.md file based on the release notes (or generate a brand new).

99 lines (98 loc) 3.26 kB
{ "name": "@cjbarth/github-release-notes", "version": "4.3.0", "description": "Create a release from a tag and uses issues or commits to creating the release notes. It also can generate a CHANGELOG.md file based on the release notes (or generate a brand new).", "main": "./github-release-notes.js", "scripts": { "changelog": "node bin/gren.js changelog --override --generate", "options": "node tasks/_generate-options.js", "examples": "node tasks/_generate-examples.js", "docs": "npm run options && npm run examples && node_modules/.bin/jsdoc -c .jsdoc.conf.json --verbose", "build": "gulp build && npm run lint:fix", "prerelease": "git clean -xfd && npm ci && npm test && npm run build", "release": "release-it", "start": "node github-release-notes.js", "test": "./node_modules/.bin/nyc mocha --reporter=nyan --require @babel/register", "coverage": "nyc --reporter=lcov --reporter=text mocha --require @babel/register", "postinstall": "node ./_postinstall.js", "update": "npx npm-check-updates -du", "update:major": "npx npm-check-updates -i", "update:minor": "npx npm-check-updates -i -t minor", "lint": "eslint && npm run prettier-check", "lint:fix": "eslint --fix && npm run prettier-format", "prettier-check": "prettier --config .prettierrc.json --check .", "prettier-format": "prettier --config .prettierrc.json --write ." }, "repository": { "type": "git", "url": "git+https://github.com/cjbarth/github-release-notes.git" }, "directories": { "bin": "./bin", "lib": "./lib", "dest": "./dest" }, "preferGlobal": true, "bin": { "gren": "bin/gren.js" }, "keywords": [ "Github", "Release", "notes", "Tag", "Changelog", "Changelog Generator", "Issues", "Commits" ], "author": "alexcanessa", "contributors": [ "Alex Canessa <canessa.alex@gmail.com>", "Han <xsytby1112@gmail.com>", "Chris Barth <chrisjbarth@hotmail.com>" ], "license": "ISC", "bugs": { "url": "https://github.com/cjbarth/github-release-notes/issues" }, "homepage": "https://github.com/cjbarth/github-release-notes#readme", "dependencies": { "@inquirer/prompts": "^7.4.1", "@socketregistry/yocto-spinner": "^1.0.13", "chalk": "^4.1.2", "commander": "^13.1.0", "connectivity": "^1.0.2", "github-api": "^3.4.0", "object-assign-deep": "^0.4.0", "prettier": "^3.5.3", "require-from-url": "^3.1.3", "semver-compare": "^1.0.0", "yaml": "^2.7.1" }, "devDependencies": { "@babel/plugin-transform-modules-commonjs": "^7.26.3", "@babel/preset-env": "^7.16.11", "@babel/register": "^7.17.7", "babel-plugin-istanbul": "^7.0.0", "chai": "^4.3.6", "clean-jsdoc-theme": "^4.3.0", "eslint": "^9.24.0", "eslint-config-prettier": "^10.1.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-mocha": "^10.5.0", "eslint-plugin-promise": "^7.2.1", "gulp": "^5.0.0", "gulp-babel": "^8.0.0", "gulp-chmod": "^3.1.0", "jsdoc": "^4.0.4", "mocha": "^11.1.0", "nyc": "^17.1.0", "prettier-plugin-packagejson": "^2.4.5", "release-it": "^17.11.0", "yamljs": "^0.3.0" }, "engines": { "node": ">= 18" } }