1
0
Files
stale/package.json
T

72 lines
2.3 KiB
JSON
Raw Normal View History

2019-08-03 21:34:59 -04:00
{
2019-08-07 10:19:42 -04:00
"name": "stale-action",
2023-12-07 17:48:34 +05:30
"version": "9.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": {
2022-12-15 13:47:58 +01:00
"build": "tsc --project tsconfig.app.json && ncc build",
"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",
"lint:all": "npm run format-check && npm run lint",
"lint:all:fix": "npm run format && npm run lint:fix",
2022-12-15 13:47:58 +01:00
"test": "jest --config ./jest.config.js",
"test:only-errors": "jest --reporters jest-silent-reporter --silent",
2021-03-08 11:56:52 +01:00
"test:watch": "jest --watch --notify --expand",
2022-12-15 13:47:58 +01:00
"all": "npm run format && npm run lint && npm run build && npm test",
2022-12-19 14:24:45 +01:00
"all:ci": "npm run format && npm run lint && npm run build && npm run test:only-errors",
2022-12-15 13:47:58 +01:00
"prerelease": "npm run build",
"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": {
2023-12-07 17:48:34 +05:30
"node": "20",
2023-02-27 09:10:43 +01:00
"npm": ">=7.0.0 <10.0.0-0"
2021-06-07 23:22:55 +02:00
},
2019-08-03 21:34:59 -04:00
"author": "GitHub",
"license": "MIT",
"dependencies": {
2023-06-23 23:13:39 +02:00
"@actions/cache": "^3.2.1",
"@actions/core": "^1.11.1",
2023-02-10 00:44:47 +01:00
"@actions/github": "^5.1.1",
"@octokit/core": "^4.2.0",
"@octokit/plugin-retry": "^4.1.1",
"lodash.deburr": "^4.1.0",
2023-07-20 01:08:42 +02:00
"semver": "^7.5.4"
2019-08-03 21:34:59 -04:00
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash.deburr": "^4.1.6",
"@types/node": "^20.5.1",
2023-07-20 01:27:15 +02:00
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
2023-03-21 23:39:03 +01:00
"@vercel/ncc": "^0.36.1",
2021-06-02 23:04:34 +02:00
"ansi-styles": "5.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.3",
2023-05-23 11:58:25 +02:00
"eslint-plugin-node": "^11.1.0",
"jest": "^29.6.2",
"jest-circus": "^29.5.0",
"jest-silent-reporter": "^0.5.0",
"js-yaml": "^4.1.0",
2023-04-12 16:23:03 +02:00
"prettier": "^2.8.7",
2021-10-13 11:42:09 -04:00
"standard-version": "^9.3.1",
2021-03-08 11:56:52 +01:00
"terminal-link": "^2.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.2.2"
2019-08-03 21:34:59 -04:00
}
}