-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@tldr-pages/labeler-action",
"version": "0.2.0",
"description": "Action to handle automatic PR labeling",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "ncc build src/index.ts --out dist",
"prepare": "husky"
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tldr-pages/tldr-labeler-action.git"
},
"author": "tldr-pages",
"license": "MIT",
"bugs": {
"url": "https://github.com/tldr-pages/tldr-labeler-action/issues"
},
"homepage": "https://github.com/tldr-pages/tldr-labeler-action",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"jest": {
"clearMocks": true,
"coverageProvider": "v8",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}
}