Files
release-changelog-builder-a…/package.json
T
Mike PenzandGitHub ec5a7bc198 ```
@actions/core                     ^1.10.0  →  ^1.10.1
 @actions/github                    ^5.1.1  →   ^6.0.0
 @octokit/rest                     ^20.0.1  →  ^20.0.2
 @types/jest                       ^29.5.4  →  ^29.5.6
 @types/node                       ^20.5.9  →  ^20.8.7
 @types/semver                      ^7.5.1  →   ^7.5.4
 @typescript-eslint/eslint-plugin   ^6.5.0  →   ^6.8.0
 @typescript-eslint/parser          ^6.5.0  →   ^6.8.0
 @vercel/ncc                       ^0.36.1  →  ^0.38.1
 eslint                            ^8.48.0  →  ^8.51.0
 eslint-plugin-github              ^4.10.0  →  ^4.10.1
 eslint-plugin-jest                ^27.2.3  →  ^27.4.2
 eslint-plugin-prettier             ^5.0.0  →   ^5.0.1
 jest                              ^29.6.4  →  ^29.7.0
 jest-circus                       ^29.6.4  →  ^29.7.0
 ```
2023-10-20 06:49:32 +00:00

62 lines
1.7 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.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.2",
"https-proxy-agent": "^7.0.2",
"moment": "^2.29.4",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/semver": "^7.5.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.51.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}