Files
release-changelog-builder-a…/package.json
T
2021-08-02 15:26:27 +02: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.7.2",
"@types/semver": "^7.3.8",
"moment": "^2.29.1",
"semver": "^7.3.5",
"webpack": "^5.47.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.10",
"@typescript-eslint/parser": "^4.28.5",
"@vercel/ncc": "^0.29.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"js-yaml": "^4.1.0",
"prettier": "2.3.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}