Files
lock-threads/package.json
2018-10-03 06:09:45 +03:00

53 lines
1.2 KiB
JSON

{
"name": "lock-threads",
"version": "0.7.1",
"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 --upgradeAll && yarn",
"push": "git push --follow-tags origin master",
"release": "standard-version && yarn run push"
},
"files": [
"docs",
"src"
],
"dependencies": {
"joi": "^13.7.0",
"probot": "^7.2.0",
"probot-config": "^0.2.0",
"probot-messages": "^0.1.0",
"probot-scheduler": "^1.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"nodemon": "1.18.4",
"npm-check-updates": "^2.14.2",
"smee-client": "^1.0.2",
"standard-version": "^4.4.0"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"github",
"issues",
"pull requests",
"lock",
"automation",
"github app",
"probot",
"probot app",
"bot"
]
}