Files
label-actions/package.json
2022-12-04 03:28:44 +02:00

57 lines
1.3 KiB
JSON

{
"name": "label-actions",
"version": "3.0.0",
"description": "A GitHub Action that performs actions when issues, pull requests or discussions are labeled or unlabeled.",
"author": "Armin Sebastian",
"license": "MIT",
"homepage": "https://github.com/dessant/label-actions",
"repository": {
"url": "https://github.com/dessant/label-actions.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/label-actions/issues"
},
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"update": "ncu --upgrade",
"release": "standard-version",
"push": "git push --tags origin master"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"joi": "^17.7.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"npm-check-updates": "^16.4.3",
"prettier": "^2.8.0",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"github",
"issues",
"pull requests",
"discussions",
"github labels",
"comment",
"close",
"lock",
"label issues",
"close issues",
"lock issues",
"comment",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}