2019-08-04 09:34:59 +08:00
|
|
|
{
|
2019-08-07 22:19:42 +08:00
|
|
|
"name": "stale-action",
|
2022-12-21 05:09:39 +08:00
|
|
|
"version": "7.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",
|
2021-12-11 03:54:39 +08:00
|
|
|
"format": "prettier --write --ignore-unknown **/*.{json,yml,ts}",
|
|
|
|
"format-check": "prettier --check --ignore-unknown **/*.{json,yml,ts}",
|
2021-01-19 18:54:16 +08:00
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
|
|
"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": {
|
|
|
|
"node": "12",
|
|
|
|
"npm": "6"
|
|
|
|
},
|
2019-08-04 09:34:59 +08:00
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2022-10-06 19:19:32 +08:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-04-01 03:38:16 +08:00
|
|
|
"@actions/github": "^5.0.1",
|
2020-11-20 19:48:33 +08:00
|
|
|
"lodash.deburr": "^4.1.0",
|
2021-05-10 21:34:45 +08:00
|
|
|
"semver": "^7.3.5"
|
2019-08-04 09:34:59 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-14 19:02:03 +08:00
|
|
|
"@types/jest": "^27.0.2",
|
2020-11-20 19:48:33 +08:00
|
|
|
"@types/lodash.deburr": "^4.1.6",
|
2021-05-08 04:47:44 +08:00
|
|
|
"@types/node": "^15.0.2",
|
2021-05-10 21:35:03 +08:00
|
|
|
"@types/semver": "^7.3.5",
|
2021-09-17 21:57:08 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
2021-09-18 02:16:29 +08:00
|
|
|
"@typescript-eslint/parser": "^4.31.1",
|
2021-06-14 22:09:26 +08:00
|
|
|
"@vercel/ncc": "^0.28.6",
|
2021-06-03 05:04:34 +08:00
|
|
|
"ansi-styles": "5.2.0",
|
2021-06-07 23:02:21 +08:00
|
|
|
"eslint": "^7.28.0",
|
2021-03-05 22:12:45 +08:00
|
|
|
"eslint-plugin-github": "^4.1.2",
|
2021-12-29 21:55:51 +08:00
|
|
|
"eslint-plugin-jest": "^25.3.2",
|
2021-10-13 23:42:09 +08:00
|
|
|
"jest": "^27.2.5",
|
2022-02-04 22:55:05 +08:00
|
|
|
"jest-circus": "^27.4.6",
|
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",
|
2021-12-29 19:23:59 +08:00
|
|
|
"prettier": "^2.5.1",
|
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",
|
2021-12-30 00:52:14 +08:00
|
|
|
"ts-jest": "^27.1.2",
|
2021-06-14 22:07:33 +08:00
|
|
|
"typescript": "^4.3.2"
|
2019-08-04 09:34:59 +08:00
|
|
|
}
|
|
|
|
}
|