mirror of
https://github.com/actions/labeler.git
synced 2025-12-15 22:46:47 +00:00
* Bump typescript from 4.3.5 to 4.4.2 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.3.5 to 4.4.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v4.3.5...v4.4.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * explicitly coerece to `any` to avoid ts type errors Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Patrick Ellis <patrick.j.ellis@gmail.com>
42 lines
955 B
JSON
42 lines
955 B
JSON
{
|
|
"name": "labeler",
|
|
"version": "3.0.2",
|
|
"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\"",
|
|
"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.4.0",
|
|
"@actions/github": "^5.0.0",
|
|
"js-yaml": "^4.1.0",
|
|
"minimatch": "^3.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.1",
|
|
"@types/node": "^16.7.10",
|
|
"@types/minimatch": "^3.0.5",
|
|
"@types/js-yaml": "^4.0.3",
|
|
"@vercel/ncc": "^0.30.0",
|
|
"jest": "^27.1.0",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.4.2"
|
|
}
|
|
}
|