Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 18.11.3 to 18.11.4. - [Release notes](https://github.com/octokit/rest.js/releases) - [Commits](https://github.com/octokit/rest.js/compare/v18.11.3...v18.11.4) --- updated-dependencies: - dependency-name: "@octokit/rest" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "release-changelog-builder-action",
|
|
"version": "v1.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.6.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/github": "^5.0.0",
|
|
"@octokit/rest": "^18.11.4",
|
|
"@types/semver": "^7.3.8",
|
|
"moment": "^2.29.1",
|
|
"semver": "^7.3.5",
|
|
"webpack": "^5.55.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^16.10.2",
|
|
"@typescript-eslint/parser": "^4.32.0",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-github": "^4.3.0",
|
|
"eslint-plugin-jest": "^24.5.0",
|
|
"jest": "^27.2.4",
|
|
"jest-circus": "^27.2.1",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.4.1",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.4.3"
|
|
}
|
|
}
|