autotag/app/package.json

27 lines
563 B
JSON
Raw Permalink Normal View History

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