
* chore(assignees): add logs * docs(readme): use the override syntax to simplify the reading * docs(readme): add missing default options * docs(readme): add 3 new options to ignore activity before stale * chore(action): add 3 new options * fix(removeStaleWhenUpdated): use the value of the action config as expected Fixes #451 * chore(main): add 3 new options * feat(ignore): add new class to ignore all activities before stale * feat(option): add new options to ignore all activities before stale * chore(index): update index file * docs(readme): fix typo * docs(readme): add missing empty row * chore(rebase): fix logger issues due to rebase * chore: aplly changes due to rebase * refactor(naming): change the name of the options as suggested * chore(logs): reverse the logs as well * docs(readme): format the table of options * refactor(naming): rename the the options * style(rename): rename more updates wording to activities * build(ci): run the test step as expected for a CI instead of using a real linter with auto fix and the tests verbose as fuck * chore: handle breaking changes due to new changes * refactor(naming): rename and reverse the options * style(tests): use plural for some describe * docs(days-before-stale): list the new option * chore(index): update index file * chore: keep static methods on top * chore(logs): remove useless log
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "stale-action",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "Marks old issues and PRs as stale",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.app.json",
|
|
"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",
|
|
"pack": "ncc build",
|
|
"test": "jest",
|
|
"test:only-errors": "jest --reporters jest-silent-reporter --silent",
|
|
"test:watch": "jest --watch --notify --expand",
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test",
|
|
"all:ci": "npm run build && npm run lint:all && npm run pack && npm run test:only-errors",
|
|
"prerelease": "npm run build && npm run pack",
|
|
"release": "standard-version",
|
|
"release:dry-run": "standard-version --dry-run"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/stale.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"stale"
|
|
],
|
|
"engines": {
|
|
"node": "12",
|
|
"npm": "6"
|
|
},
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^4.0.0",
|
|
"lodash.deburr": "^4.1.0",
|
|
"semver": "^7.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.23",
|
|
"@types/lodash.deburr": "^4.1.6",
|
|
"@types/node": "^15.0.2",
|
|
"@types/semver": "^7.3.5",
|
|
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
|
"@typescript-eslint/parser": "^4.26.1",
|
|
"@vercel/ncc": "^0.28.6",
|
|
"ansi-styles": "5.2.0",
|
|
"eslint": "^7.28.0",
|
|
"eslint-plugin-github": "^4.1.2",
|
|
"eslint-plugin-jest": "^24.3.6",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"jest-silent-reporter": "^0.4.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^2.3.1",
|
|
"standard-version": "^9.2.0",
|
|
"terminal-link": "^2.1.1",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^4.3.2"
|
|
}
|
|
}
|