2019-08-03 21:34:59 -04:00
|
|
|
{
|
2019-08-07 10:19:42 -04:00
|
|
|
"name": "stale-action",
|
2020-04-14 13:28:00 -04:00
|
|
|
"version": "2.0.0",
|
2019-08-03 21:34:59 -04:00
|
|
|
"private": true,
|
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": {
|
2021-02-16 12:18:48 +01:00
|
|
|
"build": "tsc --project tsconfig.app.json",
|
2021-01-19 11:54:16 +01: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-14 13:28:00 -04:00
|
|
|
"pack": "ncc build",
|
|
|
|
"test": "jest",
|
2021-02-28 12:15:08 +01:00
|
|
|
"test:only-errors": "jest --reporters jest-silent-reporter --silent",
|
2021-03-08 11:56:52 +01:00
|
|
|
"test:watch": "jest --watch --notify --expand",
|
2021-06-02 23:06:55 +02: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-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": {
|
|
|
|
"node": "12",
|
|
|
|
"npm": "6"
|
|
|
|
},
|
2019-08-03 21:34:59 -04:00
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-10-01 14:15:27 -04:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-07-24 08:44:53 -04:00
|
|
|
"@actions/github": "^4.0.0",
|
2020-11-20 12:48:33 +01:00
|
|
|
"lodash.deburr": "^4.1.0",
|
2021-05-10 09:34:45 -04:00
|
|
|
"semver": "^7.3.5"
|
2019-08-03 21:34:59 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-06-03 13:45:19 -04:00
|
|
|
"@types/jest": "^26.0.23",
|
2020-11-20 12:48:33 +01:00
|
|
|
"@types/lodash.deburr": "^4.1.6",
|
2021-05-07 16:47:44 -04:00
|
|
|
"@types/node": "^15.0.2",
|
2021-05-10 09:35:03 -04:00
|
|
|
"@types/semver": "^7.3.5",
|
2021-06-03 10:11:37 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
2021-05-07 16:40:29 -04:00
|
|
|
"@typescript-eslint/parser": "^4.22.1",
|
2021-01-15 07:20:54 -05:00
|
|
|
"@vercel/ncc": "^0.27.0",
|
2021-06-02 23:04:34 +02:00
|
|
|
"ansi-styles": "5.2.0",
|
2021-06-07 11:02:21 -04:00
|
|
|
"eslint": "^7.28.0",
|
2021-03-05 09:12:45 -05:00
|
|
|
"eslint-plugin-github": "^4.1.2",
|
2021-05-07 16:39:30 -04:00
|
|
|
"eslint-plugin-jest": "^24.3.6",
|
2021-01-15 07:52:52 -05:00
|
|
|
"jest": "^26.6.3",
|
2021-01-15 07:14:04 -05:00
|
|
|
"jest-circus": "^26.6.3",
|
2021-02-28 12:15:08 +01:00
|
|
|
"jest-silent-reporter": "^0.4.0",
|
2021-06-04 16:47:10 -04:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-06-07 10:59:57 -04:00
|
|
|
"prettier": "^2.3.1",
|
2021-06-02 23:06:55 +02:00
|
|
|
"standard-version": "^9.2.0",
|
2021-03-08 11:56:52 +01:00
|
|
|
"terminal-link": "^2.1.1",
|
2021-06-03 10:11:00 -04:00
|
|
|
"ts-jest": "^26.5.6",
|
2021-05-10 09:17:03 -04:00
|
|
|
"typescript": "^4.2.4"
|
2019-08-03 21:34:59 -04:00
|
|
|
}
|
|
|
|
}
|