{ "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.4", "@actions/github": "^4.0.0", "@octokit/rest": "^18.0.2", "semver": "^7.3.2" }, "devDependencies": { "@types/semver": "^7.3.1", "@types/jest": "^26.0.5", "@types/node": "^14.0.25", "@typescript-eslint/parser": "^3.7.0", "@zeit/ncc": "^0.20.5", "eslint": "^5.16.0", "eslint-plugin-github": "^4.0.1", "eslint-plugin-jest": "^23.18.0", "jest": "^24.9.0", "jest-circus": "^26.1.0", "js-yaml": "^3.13.1", "prettier": "^1.19.1", "ts-jest": "^24.2.0", "typescript": "^3.9.7" } }