{ "name": "stale-action", "version": "2.0.0", "private": true, "description": "Marks old issues and PRs as stale", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "lint": "eslint src/**/*.ts", "pack": "ncc build", "test": "jest", "all": "npm run build && npm run format && npm run lint && npm run pack && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/actions/stale.git" }, "keywords": [ "actions", "node", "stale" ], "author": "GitHub", "license": "MIT", "dependencies": { "@actions/core": "^1.2.6", "@actions/github": "^4.0.0", "@octokit/rest": "^18.0.4", "semver": "^7.3.2" }, "devDependencies": { "@types/semver": "^7.3.1", "@types/jest": "^26.0.10", "@types/node": "^14.10.0", "@typescript-eslint/parser": "^3.10.1", "@vercel/ncc": "^0.24.0", "eslint": "^7.7.0", "eslint-plugin-github": "^4.0.1", "eslint-plugin-jest": "^23.20.0", "jest": "^24.9.0", "jest-circus": "^26.4.2", "js-yaml": "^3.14.0", "prettier": "^2.1.1", "ts-jest": "^24.2.0", "typescript": "^4.0.2" } }