48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "release-changelog-builder-action",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Action to retrieve merged pull requests for a release, and construct the changelog",
|
|
"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",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "Mike Penz",
|
|
"license": "Apache 2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@octokit/rest": "^18.0.6",
|
|
"moment": "^2.29.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.14",
|
|
"@types/node": "^14.11.8",
|
|
"@typescript-eslint/parser": "^4.4.1",
|
|
"@vercel/ncc": "^0.24.1",
|
|
"eslint": "^7.11.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.1.0",
|
|
"jest": "^24.9.0",
|
|
"jest-circus": "^26.4.2",
|
|
"js-yaml": "^3.14.0",
|
|
"prettier": "2.1.1",
|
|
"ts-jest": "^24.3.0",
|
|
"typescript": "^4.0.3"
|
|
}
|
|
}
|