forked from totallymoney/assign-reviewers-by-labels-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "assign-reviewers-by-labels-action",
"version": "1.3.0",
"private": false,
"description": "Automatically assign reviewers to a PR using labels",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest",
"coverage": "vitest run --coverage",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlospontual/assign-reviewers-by-labels-action.git"
},
"keywords": [
"github",
"pr",
"actions",
"labels",
"reviewers"
],
"author": "totallymoney",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "^6.0.0",
"isomorphic-fetch": "^3.0.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.39",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.12.0",
"@typescript-eslint/parser": "^8.22.0",
"@vercel/ncc": "^0.38.3",
"c8": "^10.1.3",
"eslint": "^9.19.0",
"eslint-plugin-github": "^5.1.6",
"eslint-plugin-prettier": "^5.2.3",
"immer": "^10.1.1",
"js-yaml": "^4.1.0",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}