Files
release-changelog-builder-a…/package.json
T
dependabot[bot]andGitHub 0e48c4bf19 build(deps-dev): bump typescript from 4.3.4 to 4.3.5
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.3.4 to 4.3.5.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.3.4...v4.3.5)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-01 13:03:30 +00:00

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.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@octokit/rest": "^18.6.4",
"@types/semver": "^7.3.6",
"moment": "^2.29.1",
"semver": "^7.3.5",
"webpack": "^5.41.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.5",
"@typescript-eslint/parser": "^4.28.1",
"@vercel/ncc": "^0.28.6",
"eslint": "^7.29.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.6",
"jest-circus": "^27.0.5",
"js-yaml": "^4.1.0",
"prettier": "2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}