@octokit/rest ^19.0.13 → ^20.0.1 @types/node ^20.4.0 → ^20.4.1 eslint-plugin-prettier ^5.0.0-alpha.1 → ^5.0.0 https-proxy-agent ^7.0.0 → ^7.0.1 semver ^7.5.3 → ^7.5.4 @octokit/rest ^19.0.13 → ^20.0.1 @types/jest ^29.5.2 → ^29.5.3 @types/node ^20.4.0 → ^20.4.1 @typescript-eslint/parser ^5.61.0 → ^6.0.0 eslint-plugin-prettier ^5.0.0-alpha.1 → ^5.0.0 ```
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "release-changelog-builder-action",
|
|
"version": "v4.0.0",
|
|
"private": true,
|
|
"description": "A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mikepenz/release-changelog-builder.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"changelog",
|
|
"release-notes",
|
|
"release",
|
|
"notes",
|
|
"change",
|
|
"release-automation",
|
|
"pull-requests",
|
|
"issues",
|
|
"labels"
|
|
],
|
|
"author": "Mike Penz",
|
|
"license": "Apache 2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.1.1",
|
|
"@octokit/rest": "^20.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"github-pr-collector": "file:pr-collector"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.3",
|
|
"@types/node": "^20.4.1",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.44.0",
|
|
"eslint-plugin-github": "^4.8.0",
|
|
"eslint-plugin-jest": "^27.2.2",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.6.1",
|
|
"jest-circus": "^29.6.1",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "3.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|