2019-03-29 15:21:48 -07:00
|
|
|
{
|
2019-08-08 13:07:40 -04:00
|
|
|
"name": "labeler",
|
2023-10-25 14:25:19 +02:00
|
|
|
"version": "5.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",
|
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": {
|
2022-10-06 11:51:14 +01:00
|
|
|
"@actions/core": "^1.10.0",
|
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",
|
2023-07-26 13:23:55 +02:00
|
|
|
"minimatch": "^9.0.3"
|
2019-08-08 13:07:40 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-10-25 14:25:13 +02:00
|
|
|
"@types/jest": "^29.5.6",
|
2023-09-20 09:20:51 +02:00
|
|
|
"@types/js-yaml": "^4.0.6",
|
2023-10-04 11:23:34 +02:00
|
|
|
"@types/lodash.isequal": "^4.5.6",
|
2023-03-09 15:02:17 +02:00
|
|
|
"@types/minimatch": "^5.1.2",
|
2023-10-25 14:25:13 +02:00
|
|
|
"@types/node": "^20.8.8",
|
2023-10-04 09:02:52 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
2023-09-21 14:51:14 +02:00
|
|
|
"@typescript-eslint/parser": "^6.7.2",
|
2023-10-25 14:25:13 +02:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2023-10-10 12:44:56 +02:00
|
|
|
"eslint": "^8.51.0",
|
2023-10-25 14:25:13 +02:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-10-11 12:36:17 +02:00
|
|
|
"eslint-plugin-jest": "^27.4.2",
|
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",
|
2023-08-30 08:40:33 +02:00
|
|
|
"prettier": "^3.0.3",
|
2023-10-25 14:25:13 +02:00
|
|
|
"ts-jest": "^29.1.1",
|
|
|
|
|
"typescript": "^5.2.2"
|
2019-03-29 15:21:48 -07:00
|
|
|
}
|
|
|
|
|
}
|