2019-08-04 09:34:59 +08:00
|
|
|
{
|
2019-08-07 22:19:42 +08:00
|
|
|
"name": "stale-action",
|
2023-12-07 20:18:34 +08:00
|
|
|
"version": "9.0.0",
|
2019-08-04 09:34:59 +08:00
|
|
|
"private": true,
|
2019-08-07 22:19:42 +08:00
|
|
|
"description": "Marks old issues and PRs as stale",
|
2019-08-04 09:34:59 +08:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
2022-12-15 20:47:58 +08:00
|
|
|
"build": "tsc --project tsconfig.app.json && ncc build",
|
2023-04-03 18:49:25 +08:00
|
|
|
"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",
|
2021-01-19 18:54:16 +08:00
|
|
|
"lint:all": "npm run format-check && npm run lint",
|
|
|
|
"lint:all:fix": "npm run format && npm run lint:fix",
|
2022-12-15 20:47:58 +08:00
|
|
|
"test": "jest --config ./jest.config.js",
|
2021-02-28 19:15:08 +08:00
|
|
|
"test:only-errors": "jest --reporters jest-silent-reporter --silent",
|
2021-03-08 18:56:52 +08:00
|
|
|
"test:watch": "jest --watch --notify --expand",
|
2022-12-15 20:47:58 +08:00
|
|
|
"all": "npm run format && npm run lint && npm run build && npm test",
|
2022-12-19 21:24:45 +08:00
|
|
|
"all:ci": "npm run format && npm run lint && npm run build && npm run test:only-errors",
|
2022-12-15 20:47:58 +08:00
|
|
|
"prerelease": "npm run build",
|
2021-06-03 05:06:55 +08:00
|
|
|
"release": "standard-version",
|
|
|
|
"release:dry-run": "standard-version --dry-run"
|
2019-08-04 09:34:59 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-08-07 22:33:00 +08:00
|
|
|
"url": "git+https://github.com/actions/stale.git"
|
2019-08-04 09:34:59 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
2019-08-07 22:33:00 +08:00
|
|
|
"stale"
|
2019-08-04 09:34:59 +08:00
|
|
|
],
|
2021-06-08 05:22:55 +08:00
|
|
|
"engines": {
|
2023-12-07 20:18:34 +08:00
|
|
|
"node": "20",
|
2023-02-27 16:10:43 +08:00
|
|
|
"npm": ">=7.0.0 <10.0.0-0"
|
2021-06-08 05:22:55 +08:00
|
|
|
},
|
2019-08-04 09:34:59 +08:00
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2023-06-24 05:13:39 +08:00
|
|
|
"@actions/cache": "^3.2.1",
|
2022-10-06 19:19:32 +08:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-02-10 07:44:47 +08:00
|
|
|
"@actions/github": "^5.1.1",
|
|
|
|
"@octokit/core": "^4.2.0",
|
|
|
|
"@octokit/plugin-retry": "^4.1.1",
|
2020-11-20 19:48:33 +08:00
|
|
|
"lodash.deburr": "^4.1.0",
|
2023-07-20 07:08:42 +08:00
|
|
|
"semver": "^7.5.4"
|
2019-08-04 09:34:59 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-24 19:54:03 +08:00
|
|
|
"@types/jest": "^29.5.3",
|
2020-11-20 19:48:33 +08:00
|
|
|
"@types/lodash.deburr": "^4.1.6",
|
2023-09-01 15:01:45 +08:00
|
|
|
"@types/node": "^20.5.1",
|
2023-07-20 07:27:15 +08:00
|
|
|
"@types/semver": "^7.5.0",
|
2023-08-03 07:00:09 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
2023-08-04 17:38:38 +08:00
|
|
|
"@typescript-eslint/parser": "^6.2.1",
|
2023-03-22 06:39:03 +08:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2021-06-03 05:04:34 +08:00
|
|
|
"ansi-styles": "5.2.0",
|
2023-07-31 19:47:40 +08:00
|
|
|
"eslint": "^8.46.0",
|
2023-03-27 19:57:09 +08:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-08-04 17:38:38 +08:00
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
2023-05-23 17:58:25 +08:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2023-08-03 05:34:02 +08:00
|
|
|
"jest": "^29.6.2",
|
2023-03-27 19:56:58 +08:00
|
|
|
"jest-circus": "^29.5.0",
|
2021-10-13 21:02:17 +08:00
|
|
|
"jest-silent-reporter": "^0.5.0",
|
2021-06-05 04:47:10 +08:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-04-12 22:23:03 +08:00
|
|
|
"prettier": "^2.8.7",
|
2021-10-13 23:42:09 +08:00
|
|
|
"standard-version": "^9.3.1",
|
2021-03-08 18:56:52 +08:00
|
|
|
"terminal-link": "^2.1.1",
|
2023-01-17 16:54:58 +08:00
|
|
|
"ts-jest": "^29.0.5",
|
2023-09-01 15:01:29 +08:00
|
|
|
"typescript": "^5.2.2"
|
2019-08-04 09:34:59 +08:00
|
|
|
}
|
|
|
|
}
|