Files

43 lines
1.0 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",
2022-08-12 12:23:34 -04:00
"version": "4.0.1",
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",
2022-12-19 16:58:25 +01:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2022-12-20 16:53:03 +01:00
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
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",
"@actions/github": "^5.0.0",
2021-06-04 23:30:19 -04:00
"js-yaml": "^4.1.0",
2021-06-04 23:24:39 -04:00
"minimatch": "^3.0.4"
2019-08-08 13:07:40 -04:00
},
"devDependencies": {
2022-03-01 15:01:09 +00:00
"@types/jest": "^27.4.1",
2021-11-09 15:00:52 +00:00
"@types/node": "^16.11.7",
"@types/minimatch": "^3.0.5",
2022-02-28 18:11:41 +00:00
"@types/js-yaml": "^4.0.5",
2022-05-26 15:01:09 +00:00
"@vercel/ncc": "^0.34.0",
2022-02-08 15:01:39 +00:00
"jest": "^27.5.1",
2022-09-07 10:36:59 -04:00
"prettier": "^2.7.1",
2022-02-28 18:43:07 +00:00
"ts-jest": "^27.1.3",
2022-11-15 11:43:09 -05:00
"typescript": "^4.8.4"
2019-03-29 15:21:48 -07:00
}
}