autotag/package.json
2022-10-12 20:49:37 -05:00

30 lines
823 B
JSON

{
"name": "autotag-action",
"version": "1.1.3",
"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"
},
"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"
}