mirror of
https://github.com/dessant/lock-threads.git
synced 2026-03-13 01:27:03 -04:00
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "lock-threads",
|
|
"version": "1.0.0",
|
|
"description": "A GitHub App built with Probot that locks closed issues and pull requests after a period of inactivity.",
|
|
"author": "Armin Sebastian",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"url": "https://github.com/dessant/lock-threads.git",
|
|
"type": "git"
|
|
},
|
|
"bugs": "https://github.com/dessant/lock-threads/issues",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "probot run ./src/index.js",
|
|
"watch": "nodemon --exec 'yarn run start'",
|
|
"update": "ncu --upgrade && yarn",
|
|
"push": "git push --follow-tags origin master",
|
|
"release": "standard-version"
|
|
},
|
|
"files": [
|
|
"docs",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"joi": "^14.3.1",
|
|
"probot": "^9.2.13",
|
|
"probot-config": "^1.0.1",
|
|
"probot-messages": "^1.0.1",
|
|
"probot-scheduler": "^2.0.0-beta.1",
|
|
"uuid": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.19.1",
|
|
"npm-check-updates": "^3.1.10",
|
|
"prettier": "^1.18.2",
|
|
"smee-client": "^1.1.0",
|
|
"standard-version": "^6.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.12.0"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"issues",
|
|
"pull requests",
|
|
"lock",
|
|
"automation",
|
|
"github app",
|
|
"probot",
|
|
"probot app",
|
|
"bot"
|
|
]
|
|
}
|