mirror of
https://github.com/actions/labeler.git
synced 2025-12-11 12:07:32 +00:00
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "labeler",
|
|
"version": "4.0.1",
|
|
"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": "^5.1.1",
|
|
"js-yaml": "^4.1.0",
|
|
"minimatch": "^7.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/minimatch": "^5.1.2",
|
|
"@types/node": "^16.11.7",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"jest": "^27.5.1",
|
|
"prettier": "^2.8.7",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|