generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.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.2.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/totallymoney/assign-reviewers-by-labels-action.git"
},
"keywords": [
"github",
"pr",
"actions",
"labels",
"reviewers"
],
"author": "totallymoney",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "^5.0.3",
"isomorphic-fetch": "^3.0.0",
"zod": "^3.17.10"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.16.2",
"@typescript-eslint/parser": "^5.38.1",
"@vercel/ncc": "^0.31.1",
"c8": "^7.12.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-prettier": "^4.2.1",
"immer": "^9.0.15",
"js-yaml": "^4.1.0",
"msw": "^0.44.2",
"prettier": "2.8.3",
"typescript": "^4.4.4",
"vitest": "^0.23.4"
}
}