2019-03-29 15:21:48 -07:00
|
|
|
{
|
2019-08-08 13:07:40 -04:00
|
|
|
"name": "labeler",
|
2025-09-04 04:24:18 +01:00
|
|
|
"version": "6.0.0",
|
2019-08-08 13:07:40 -04:00
|
|
|
"description": "Labels pull requests by files altered",
|
2020-05-12 14:26:07 -04:00
|
|
|
"main": "lib/main.js",
|
2025-09-04 04:24:18 +01:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=24"
|
|
|
|
|
},
|
2019-08-08 13:07:40 -04:00
|
|
|
"scripts": {
|
2020-05-12 16:00:28 -04:00
|
|
|
"build": "tsc && ncc build lib/main.js",
|
2023-04-03 12:49:40 +02:00
|
|
|
"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",
|
2019-08-08 13:07:40 -04:00
|
|
|
"test": "jest"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/labeler.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
2020-03-05 12:57:26 -05:00
|
|
|
"github",
|
2019-08-08 13:07:40 -04:00
|
|
|
"actions",
|
2020-03-05 12:57:26 -05:00
|
|
|
"label",
|
|
|
|
|
"labeler"
|
2019-08-08 13:07:40 -04:00
|
|
|
],
|
|
|
|
|
"author": "GitHub",
|
2019-03-29 15:21:48 -07:00
|
|
|
"license": "MIT",
|
|
|
|
|
"dependencies": {
|
2024-12-16 08:39:04 -06:00
|
|
|
"@actions/core": "^1.11.1",
|
2023-10-25 14:25:13 +02:00
|
|
|
"@actions/github": "^6.0.0",
|
|
|
|
|
"@octokit/plugin-retry": "^6.0.0",
|
2021-06-04 23:30:19 -04:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-10-04 11:23:34 +02:00
|
|
|
"lodash.isequal": "^4.5.0",
|
2026-03-11 16:56:45 -05:00
|
|
|
"minimatch": "^10.2.3"
|
2019-08-08 13:07:40 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-12-17 11:54:18 -06:00
|
|
|
"@types/jest": "^29.5.14",
|
2023-12-18 14:34:19 +00:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2024-04-04 11:04:15 -05:00
|
|
|
"@types/lodash.isequal": "^4.5.8",
|
2023-03-09 15:02:17 +02:00
|
|
|
"@types/minimatch": "^5.1.2",
|
2025-09-04 04:24:18 +01:00
|
|
|
"@types/node": "^24.1.0",
|
2024-04-04 11:04:15 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
2024-12-17 11:30:47 -06:00
|
|
|
"@typescript-eslint/parser": "^7.18.0",
|
2025-02-13 14:38:51 -06:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2024-04-04 11:04:15 -05:00
|
|
|
"eslint": "^8.57.0",
|
2023-12-04 15:50:37 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2025-02-19 17:08:51 -06:00
|
|
|
"eslint-plugin-jest": "^28.11.0",
|
2023-05-23 11:57:56 +02:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2023-10-25 14:25:13 +02:00
|
|
|
"jest": "^29.7.0",
|
2024-12-17 11:40:17 -06:00
|
|
|
"prettier": "^3.4.2",
|
2024-12-19 11:38:22 -06:00
|
|
|
"ts-jest": "^29.2.5",
|
2025-02-13 14:39:42 -06:00
|
|
|
"typescript": "^5.7.3"
|
2024-04-04 11:04:15 -05:00
|
|
|
|
2019-03-29 15:21:48 -07:00
|
|
|
}
|
|
|
|
|
}
|