autotag/package.json

27 lines
687 B
JSON
Raw Normal View History

2020-04-02 00:46:31 +07:00
{
2022-10-13 08:49:37 +07:00
"name": "autotag-action",
"version": "1.1.3",
"private": true,
2023-03-31 10:47:26 +07:00
"description": "Automatically create a tag whenever the version changes",
2023-03-31 11:04:21 +07:00
"main": "src/main.js",
"type": "module",
2020-04-02 00:46:31 +07:00
"scripts": {
2023-03-31 11:16:25 +07:00
"test": "echo \"Error: no test specified\" && exit 1"
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"
},
2023-03-31 11:16:25 +07:00
"homepage": "https://github.com/ButlerLogic/action-autotag#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"octokit": "^2.0.14",
"semver": "^7.3.8"
}
2023-03-31 11:30:16 +07:00
}