Files
lock-threads/package.json
2020-07-07 23:47:17 +03:00

49 lines
1.2 KiB
JSON

{
"name": "lock-threads",
"version": "2.0.1",
"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": {
"update": "ncu --upgrade && npm install",
"package": "ncc build src/index.js -o dist",
"push": "git push --tags origin master",
"release": "standard-version"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"@hapi/joi": "^17.1.1",
"decamelize": "^4.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"npm-check-updates": "^7.0.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"github",
"issues",
"pull requests",
"lock",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}