Files
labeler/package.json
T

52 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2019-03-29 15:21:48 -07:00
{
2019-08-08 13:07:40 -04:00
"name": "labeler",
2023-06-19 07:07:00 -04:00
"version": "4.1.0",
2019-08-08 13:07:40 -04:00
"description": "Labels pull requests by files altered",
"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",
"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-01-09 15:27:57 +01:00
"@actions/github": "^5.1.1",
"@octokit/plugin-retry": "^5.0.5",
"jest-each": "^29.6.1",
2021-06-04 23:30:19 -04:00
"js-yaml": "^4.1.0",
2023-03-23 12:14:00 +01:00
"minimatch": "^7.4.3"
2019-08-08 13:07:40 -04:00
},
"devDependencies": {
2022-03-01 15:01:09 +00:00
"@types/jest": "^27.4.1",
2022-02-28 18:11:41 +00:00
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
2023-01-26 15:00:59 +00:00
"@vercel/ncc": "^0.36.1",
2023-07-03 18:40:34 +02:00
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
2023-05-23 11:57:56 +02:00
"eslint-plugin-node": "^11.1.0",
2022-02-08 15:01:39 +00:00
"jest": "^27.5.1",
2023-05-05 15:44:04 +02:00
"prettier": "^2.8.8",
2022-02-28 18:43:07 +00:00
"ts-jest": "^27.1.3",
2023-01-31 15:01:02 +00:00
"typescript": "^4.9.5"
2019-03-29 15:21:48 -07:00
}
}