mirror of
https://github.com/actions/labeler.git
synced 2025-12-11 12:07:32 +00:00
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 9.0.0 to 9.1.0. - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0) --- updated-dependencies: - dependency-name: eslint-config-prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "labeler",
|
|
"version": "5.0.0",
|
|
"description": "Labels pull requests by files altered",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build lib/main.js",
|
|
"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",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/labeler.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"label",
|
|
"labeler"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^6.0.0",
|
|
"@octokit/plugin-retry": "^6.0.0",
|
|
"js-yaml": "^4.1.0",
|
|
"lodash.isequal": "^4.5.0",
|
|
"minimatch": "^9.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.6",
|
|
"@types/js-yaml": "^4.0.6",
|
|
"@types/lodash.isequal": "^4.5.6",
|
|
"@types/minimatch": "^5.1.2",
|
|
"@types/node": "^20.8.8",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
|
"@typescript-eslint/parser": "^6.7.2",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.51.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^27.4.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|