-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 KB
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
{
"name": "copy-issue-labels",
"version": "2.0.0",
"description": "Github action for copying labels of linked issues",
"main": "lib/index.js",
"scripts": {
"build": "tsc && ncc build --source-map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michalvankodev/copy-issue-labels.git"
},
"keywords": [
"github",
"actions",
"labels",
"issues",
"pulls"
],
"author": "Michal Vanko",
"license": "MIT",
"bugs": {
"url": "https://github.com/michalvankodev/copy-issue-labels/issues"
},
"homepage": "https://github.com/michalvankodev/copy-issue-labels#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^9.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.18",
"@types/node": "^22.19.17",
"@typescript-eslint/parser": "^4.9.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^7.15.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^30.3.0",
"jest-circus": "^30.3.0",
"prettier": "^2.2.1",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
}
}