Files
labeler/package.json
T

57 lines
1.6 KiB
JSON
Raw Normal View History

2019-03-29 15:21:48 -07:00
{
2019-08-08 13:07:40 -04:00
"name": "labeler",
"version": "6.0.0",
2019-08-08 13:07:40 -04:00
"description": "Labels pull requests by files altered",
"main": "lib/main.js",
"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",
"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": {
"@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": {
"@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",
"@types/minimatch": "^5.1.2",
"@types/node": "^24.1.0",
2024-04-04 11:04:15 -05:00
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
2024-04-04 11:04:15 -05:00
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"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
}
}