Files
lock-threads/package.json
2021-09-27 22:59:48 +03:00

48 lines
1.1 KiB
JSON

{
"name": "lock-threads",
"version": "3.0.0",
"description": "A GitHub Action that locks closed issues and pull requests after a period of inactivity.",
"author": "Armin Sebastian",
"license": "MIT",
"homepage": "https://github.com/dessant/lock-threads",
"repository": {
"url": "https://github.com/dessant/lock-threads.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/lock-threads/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.5.0",
"@actions/github": "^5.0.0",
"joi": "^17.4.2"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"npm-check-updates": "^11.8.5",
"prettier": "^2.4.1",
"standard-version": "^9.3.1"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"github",
"issues",
"pull requests",
"lock",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}