-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "label-sync",
"version": "2.3.3",
"description": "An action that allows you to sync labels from a repository or a config file",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts --minify --out lib",
"lint": "gts lint",
"fix": "gts fix",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "gts clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/label-sync.git"
},
"author": "Federico Grandi <[email protected]>",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/EndBug/label-sync/issues"
},
"homepage": "https://github.com/EndBug/label-sync#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"axios": "^1.7.7",
"github-label-sync": "^2.3.1",
"js-yaml": "^4.1.0",
"pretty-error": "^4.0.0"
},
"devDependencies": {
"@types/github-label-sync": "^2.3.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "~12.20.15",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vercel/ncc": "^0.38.2",
"gts": "^5.3.1",
"husky": "^9.1.5",
"typescript": "^5.6.2"
}
}