Files
stale/package.json
T

74 lines
2.4 KiB
JSON
Raw Normal View History

2019-08-03 21:34:59 -04:00
{
2019-08-07 10:19:42 -04:00
"name": "stale-action",
"version": "11.0.0",
2019-08-03 21:34:59 -04:00
"private": true,
"type": "module",
2019-08-07 10:19:42 -04:00
"description": "Marks old issues and PRs as stale",
2019-08-03 21:34:59 -04:00
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.app.json && ncc build lib/main.js",
"format": "prettier --no-error-on-unmatched-pattern --write \"**/*.{ts,yml,yaml}\"",
"format-check": "prettier --no-error-on-unmatched-pattern --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint \"**/*.ts\"",
"lint:fix": "eslint \"**/*.ts\" --fix",
"lint:all": "npm run format-check && npm run lint",
"lint:all:fix": "npm run format && npm run lint:fix",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand",
"test:only-errors": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --reporters jest-silent-reporter --silent",
"test:watch": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch --notify --expand",
2022-12-15 13:47:58 +01:00
"all": "npm run format && npm run lint && npm run build && npm test",
2022-12-19 14:24:45 +01:00
"all:ci": "npm run format && npm run lint && npm run build && npm run test:only-errors",
2022-12-15 13:47:58 +01:00
"prerelease": "npm run build",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run"
2019-08-03 21:34:59 -04:00
},
"repository": {
"type": "git",
2019-08-07 10:33:00 -04:00
"url": "git+https://github.com/actions/stale.git"
2019-08-03 21:34:59 -04:00
},
"keywords": [
"actions",
"node",
2019-08-07 10:33:00 -04:00
"stale"
2019-08-03 21:34:59 -04:00
],
2021-06-07 23:22:55 +02:00
"engines": {
2025-09-03 19:54:19 +01:00
"node": "24",
"npm": ">=7.0.0"
2021-06-07 23:22:55 +02:00
},
2019-08-03 21:34:59 -04:00
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "^6.1.0",
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@octokit/core": "^7.0.6",
"@octokit/plugin-retry": "^8.1.0",
"lodash.deburr": "^4.1.0"
2019-08-03 21:34:59 -04:00
},
"overrides": {
"undici": "6.27.0"
},
2019-08-03 21:34:59 -04:00
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.4.1",
"@types/lodash.deburr": "^4.1.6",
"@types/node": "^24.13.3",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"@vercel/ncc": "^0.44.1",
"ansi-styles": "^6.2.3",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.4",
"eslint-plugin-n": "^18.2.1",
"globals": "^17.7.0",
"jest": "^30.4.2",
"jest-silent-reporter": "^0.6.0",
"prettier": "^3.9.4",
"standard-version": "^9.5.0",
"terminal-link": "^5.0.0",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3"
2019-08-03 21:34:59 -04:00
}
}