{ "name": "stale-action", "version": "7.0.0", "private": true, "description": "Marks old issues and PRs as stale", "main": "lib/main.js", "scripts": { "build": "tsc --project tsconfig.app.json && ncc build", "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write **/*.{ts,yml,yaml}", "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check **/*.{ts,yml,yaml}", "lint": "eslint --config ./.eslintrc.js **/*.ts", "lint:fix": "eslint --config ./.eslintrc.js **/*.ts --fix", "lint:all": "npm run format-check && npm run lint", "lint:all:fix": "npm run format && npm run lint:fix", "test": "jest --config ./jest.config.js", "test:only-errors": "jest --reporters jest-silent-reporter --silent", "test:watch": "jest --watch --notify --expand", "all": "npm run format && npm run lint && npm run build && npm test", "all:ci": "npm run format && npm run lint && npm run build && npm run test:only-errors", "prerelease": "npm run build", "release": "standard-version", "release:dry-run": "standard-version --dry-run" }, "repository": { "type": "git", "url": "git+https://github.com/actions/stale.git" }, "keywords": [ "actions", "node", "stale" ], "engines": { "node": "16", "npm": "8" }, "author": "GitHub", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", "@actions/github": "^5.0.1", "lodash.deburr": "^4.1.0", "semver": "^7.3.5" }, "devDependencies": { "@types/jest": "^29.4.0", "@types/lodash.deburr": "^4.1.6", "@types/node": "^18.11.18", "@types/semver": "^7.3.5", "@typescript-eslint/eslint-plugin": "^5.54.0", "@typescript-eslint/parser": "^5.54.0", "@vercel/ncc": "^0.28.6", "ansi-styles": "5.2.0", "eslint": "^8.35.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-jest": "^27.2.1", "jest": "^29.4.1", "jest-circus": "^29.3.1", "jest-silent-reporter": "^0.5.0", "js-yaml": "^4.1.0", "prettier": "^2.8.4", "standard-version": "^9.3.1", "terminal-link": "^2.1.1", "ts-jest": "^29.0.5", "typescript": "^4.9.4" } }