github-tag-action/package.json

45 lines
1.2 KiB
JSON

{
"name": "github-tag-action",
"version": "5.6.0",
"private": true,
"description": "A GitHub Action to automatically bump and tag master, on merge, with the latest SemVer formatted version.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest --testTimeout 10000",
"check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudutour/github-tag-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Mathieu Dutour",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"semver": "^7.3.4"
},
"devDependencies": {
"@octokit/rest": "^18.0.12",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.19",
"@types/semver": "^7.1.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}