mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 02:11:08 +07:00
29 lines
841 B
JSON
29 lines
841 B
JSON
{
|
|
"name": "autotag-action",
|
|
"version": "1.1.4",
|
|
"private": true,
|
|
"description": "Automatically create a tag whenever the version changes in package.json",
|
|
"main": "app/main.js",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^2.1.0",
|
|
"semver": "^7.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.15.10"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"prepare": "esbuild --bundle ./src/main.js --platform=node --outdir=dist --external:octokit"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ButlerLogic/action-autotag.git"
|
|
},
|
|
"author": "Corey Butler",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ButlerLogic/action-autotag/issues"
|
|
},
|
|
"homepage": "https://github.com/ButlerLogic/action-autotag#readme"
|
|
} |