2019-08-04 09:34:59 +08:00
|
|
|
{
|
2019-08-07 22:19:42 +08:00
|
|
|
"name": "stale-action",
|
2020-04-15 01:28:00 +08:00
|
|
|
"version": "2.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": {
|
2021-02-16 19:18:48 +08:00
|
|
|
"build": "tsc --project tsconfig.app.json",
|
2021-01-19 18:54:16 +08:00
|
|
|
"format": "prettier --write --ignore-unknown **/*.{md,json,yml,ts}",
|
|
|
|
"format-check": "prettier --check --ignore-unknown **/*.{md,json,yml,ts}",
|
|
|
|
"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",
|
2020-04-15 01:28:00 +08:00
|
|
|
"pack": "ncc build",
|
|
|
|
"test": "jest",
|
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",
|
2021-06-03 05:06:55 +08:00
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test",
|
|
|
|
"prerelease": "npm run build && npm run pack",
|
|
|
|
"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
|
|
|
],
|
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-10-02 02:15:27 +08:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-07-24 20:44:53 +08:00
|
|
|
"@actions/github": "^4.0.0",
|
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-01-19 19:00:08 +08:00
|
|
|
"@types/jest": "^26.0.20",
|
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-03-04 19:38:32 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
2021-05-08 04:40:29 +08:00
|
|
|
"@typescript-eslint/parser": "^4.22.1",
|
2021-01-15 20:20:54 +08:00
|
|
|
"@vercel/ncc": "^0.27.0",
|
2021-06-03 05:04:34 +08:00
|
|
|
"ansi-styles": "5.2.0",
|
2021-03-01 22:21:33 +08:00
|
|
|
"eslint": "^7.21.0",
|
2021-03-05 22:12:45 +08:00
|
|
|
"eslint-plugin-github": "^4.1.2",
|
2021-05-08 04:39:30 +08:00
|
|
|
"eslint-plugin-jest": "^24.3.6",
|
2021-01-15 20:52:52 +08:00
|
|
|
"jest": "^26.6.3",
|
2021-01-15 20:14:04 +08:00
|
|
|
"jest-circus": "^26.6.3",
|
2021-02-28 19:15:08 +08:00
|
|
|
"jest-silent-reporter": "^0.4.0",
|
2021-01-18 21:13:03 +08:00
|
|
|
"js-yaml": "^4.0.0",
|
2021-01-15 20:14:14 +08:00
|
|
|
"prettier": "^2.2.1",
|
2021-06-03 05:06:55 +08:00
|
|
|
"standard-version": "^9.2.0",
|
2021-03-08 18:56:52 +08:00
|
|
|
"terminal-link": "^2.1.1",
|
2021-03-05 22:12:38 +08:00
|
|
|
"ts-jest": "^26.5.3",
|
2021-05-10 21:17:03 +08:00
|
|
|
"typescript": "^4.2.4"
|
2019-08-04 09:34:59 +08:00
|
|
|
}
|
|
|
|
}
|