Files
labeler/package.json

44 lines
1012 B
JSON

{
"name": "labeler",
"version": "3.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\"",
"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.2.4",
"@actions/github": "^2.2.0",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@types/minimatch": "^3.0.0",
"@types/js-yaml": "^3.12.1",
"@vercel/ncc": "^0.23.0",
"jest": "^27.0.4",
"prettier": "^2.3.0",
"ts-jest": "^27.0.2",
"typescript": "^4.3.0"
}
}