autotag/package.json

27 lines
552 B
JSON
Raw 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",
"scripts": {
"test": "jest"
},
"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
"type": "module",
"author": "ButlerLogic",
2019-09-02 15:40:00 -05:00
"license": "MIT",
"dependencies": {
2019-09-02 17:06:23 -05:00
"@actions/core": "^1.0.0",
2019-09-02 17:50:18 -05:00
"@actions/github": "^1.0.0"
2019-09-02 15:40:00 -05:00
}
}