keep-a-changelog-new-release/package.json

54 lines
1.5 KiB
JSON

{
"name": "keep-a-changelog-new-release-action",
"version": "1.0.0",
"private": true,
"description": "A GitHub action for updating your Keep-A-Changelog CHANGELOG.md for new releases",
"main": "dist/index.js",
"scripts": {
"postinstall": "git config core.hooksPath .githooks",
"build": "webpack --mode production",
"compile": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaseizinger/keep-a-changelog-new-release.git"
},
"author": "Thomas Eizinger",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"remark-parse": "^10.0.2",
"remark-stringify": "^10.0.3",
"stream-buffers": "^3.0.2",
"unified": "^10.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/stream-buffers": "^3.0.4",
"@types/unist": "^3.0.0",
"@types/vfile": "^4.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.41.0",
"eslint-plugin-github": "^4.8.0",
"eslint-plugin-jest": "^28.0.0",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"js-yaml": "^4.1.0",
"mock-env": "^0.2.0",
"prettier": "^3.0.0",
"to-vfile": "^7.2.4",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1",
"yarn-upgrade-all": "^0.7.2"
}
}