autotag/src/package.json

31 lines
711 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",
"version": "1.1.3",
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": {
2023-03-31 00:18:38 -05:00
"start": "node ./main.js",
"build": "esbuild --bundle ./src/main.js --platform=node --outdir=dist --external:octokit"
2020-04-01 12:32:38 -05:00
},
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",
2023-03-29 00:37:38 -05:00
"dependencies": {
"@actions/core": "^1.10.0",
"octokit": "^2.0.14",
"semver": "^7.3.8"
2023-03-31 00:18:38 -05:00
},
"devDependencies": {
"esbuild": "^0.17.14"
2023-03-29 00:37:38 -05:00
}
2019-09-02 15:40:00 -05:00
}