Skip to content
Permalink
cfabdea1fa
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
42 lines (42 sloc) 1.01 KB
{
"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 --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
"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": "^5.1.2"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.11.7",
"@types/minimatch": "^5.1.2",
"@types/js-yaml": "^4.0.5",
"@vercel/ncc": "^0.36.0",
"jest": "^27.5.1",
"prettier": "^2.8.4",
"ts-jest": "^27.1.3",
"typescript": "^4.9.4"
}
}