autotag/app/package.json

27 lines
563 B
JSON
Raw Normal View History

2019-09-03 03:40:00 +07:00
{
2019-09-03 04:11:57 +07:00
"name": "autotag-action",
2020-09-11 06:28:20 +07:00
"version": "1.0.3",
2019-09-03 03:40:00 +07:00
"private": true,
2019-09-03 04:11:57 +07:00
"description": "Automatically create a tag whenever the version changes in package.json",
2019-09-03 03:40:00 +07:00
"main": "lib/main.js",
2020-04-02 00:32:38 +07:00
"scripts": {
"start": "node ./main.js"
},
2019-09-03 03:40:00 +07:00
"repository": {
"type": "git",
2019-09-03 04:11:57 +07:00
"url": "git+https://github.com/butlerlogic/action-autotag.git"
2019-09-03 03:40:00 +07:00
},
"keywords": [
"actions",
"node",
"setup"
],
2019-09-03 04:11:57 +07:00
"author": "ButlerLogic",
2019-09-03 03:40:00 +07:00
"license": "MIT",
"dependencies": {
2020-01-28 05:49:28 +07:00
"@actions/core": "^1.2.2",
"@actions/github": "^2.1.0"
},
"type": "module"
2019-09-03 03:40:00 +07:00
}