Files
release-changelog-builder-a…/package.json
T
Mike PenzandGitHub b23a9d08a2 ```
@octokit/rest              ^19.0.7  →  ^19.0.8
 @types/node                ^20.1.1  →  ^20.2.1
 @typescript-eslint/parser  ^5.59.5  →  ^5.59.6
 https-proxy-agent           ^6.1.0  →   ^6.2.0
 semver                      ^7.5.0  →   ^7.5.1
 webpack                    ^5.82.0  →  ^5.83.1
 ```
2023-05-19 15:56:34 +00:00

65 lines
1.7 KiB
JSON

{
"name": "release-changelog-builder-action",
"version": "v3.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": "^19.0.8",
"https-proxy-agent": "^6.2.0",
"moment": "^2.29.4",
"semver": "^7.5.1",
"tunnel": "^0.0.6",
"webpack": "^5.83.1"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@types/semver": "^7.5.0",
"@typescript-eslint/parser": "^5.59.6",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.40.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"js-yaml": "^4.1.0",
"prettier": "2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"overrides": {
"json5": "^2.2.3"
}
}