autotag/package.json

29 lines
854 B
JSON
Raw Permalink Normal View History

2020-04-02 00:46:31 +07:00
{
2022-10-13 08:49:37 +07:00
"name": "autotag-action",
2024-03-12 03:35:18 +07:00
"version": "1.1.4",
2022-10-13 08:49:37 +07:00
"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"
},
2020-04-02 00:46:31 +07:00
"scripts": {
2022-10-13 08:49:37 +07:00
"test": "echo \"Error: no test specified\" && exit 1",
2024-03-12 04:28:34 +07:00
"prepare": "esbuild --bundle ./src/main.js --format=esm --platform=node --outdir=dist --external:octokit"
2020-04-02 00:46:31 +07:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/ButlerLogic/action-autotag.git"
},
2022-10-13 08:49:37 +07:00
"author": "Corey Butler",
"license": "MIT",
2020-04-02 00:46:31 +07:00
"bugs": {
"url": "https://github.com/ButlerLogic/action-autotag/issues"
},
"homepage": "https://github.com/ButlerLogic/action-autotag#readme"
2023-03-31 09:07:57 +07:00
}