35 lines
860 B
JSON
35 lines
860 B
JSON
{
|
|
"name": "github-tag-action",
|
|
"version": "4.0.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"
|
|
},
|
|
"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.0",
|
|
"@actions/exec": "^1.0.1",
|
|
"@actions/github": "^1.1.0",
|
|
"@semantic-release/commit-analyzer": "^6.3.3",
|
|
"@semantic-release/release-notes-generator": "^9.0.0",
|
|
"semver": "^6.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.12.14",
|
|
"@types/semver": "^6.2.0",
|
|
"typescript": "^3.7.2"
|
|
}
|
|
}
|