mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 10:21:08 +07:00
28 lines
587 B
JSON
28 lines
587 B
JSON
{
|
|
"name": "autotag-action",
|
|
"version": "1.1.3",
|
|
"private": true,
|
|
"description": "Automatically create a tag whenever the version changes in package.json",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"start": "node ./main.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/butlerlogic/action-autotag.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "ButlerLogic",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.2",
|
|
"@actions/github": "^2.1.0",
|
|
"semver": "^7.3.4"
|
|
},
|
|
"type": "module"
|
|
}
|