mirror of
https://github.com/dessant/label-actions.git
synced 2026-03-13 01:27:03 -04:00
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "label-actions",
|
|
"version": "0.1.0",
|
|
"description": "A GitHub App built with Probot that performs actions when issues or pull requests are labeled or unlabeled.",
|
|
"author": "Armin Sebastian",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"url": "https://github.com/dessant/label-actions.git",
|
|
"type": "git"
|
|
},
|
|
"bugs": "https://github.com/dessant/label-actions/issues",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "probot run ./src/index.js",
|
|
"watch": "nodemon --exec 'yarn run start'",
|
|
"update": "ncu --upgrade --upgradeAll && yarn",
|
|
"push": "git push --follow-tags origin master",
|
|
"release": "standard-version && yarn run push"
|
|
},
|
|
"files": [
|
|
"docs",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"joi": "^14.3.1",
|
|
"probot": "^7.5.0",
|
|
"probot-config": "^1.0.1",
|
|
"probot-messages": "^0.1.2",
|
|
"uuid": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.18.9",
|
|
"npm-check-updates": "^2.15.0",
|
|
"prettier": "^1.16.0",
|
|
"smee-client": "^1.0.2",
|
|
"standard-version": "^4.4.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"issues",
|
|
"pull requests",
|
|
"label",
|
|
"comment",
|
|
"close",
|
|
"lock",
|
|
"label issues",
|
|
"close issues",
|
|
"lock issues",
|
|
"automation",
|
|
"github app",
|
|
"probot",
|
|
"probot app",
|
|
"bot"
|
|
]
|
|
}
|