autotag/app/package.json

28 lines
587 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",
"version": "1.1.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": {
"@actions/core": "^1.9.1",
"@actions/github": "^2.1.0",
"semver": "^7.3.4"
},
"type": "module"
2019-09-03 03:40:00 +07:00
}