forked from EndBug/label-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "label-sync",
"version": "2.3.0",
"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": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/label-sync.git"
},
"author": "Federico Grandi <fgrandi30@gmail.com>",
"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.0",
"axios": "^0.27.2",
"github-label-sync": "^2.2.0",
"pretty-error": "^4.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/github-label-sync": "^2.0.2",
"@types/node": "~12.20.15",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}