-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "gh-labels",
"version": "1.0.0",
"description": "A small CLI tool for managing GitHub labels",
"main": "index.ts",
"author": "Milos Zivkovic <milos.zivkovic@tendermint.com>",
"license": "Apache-2.0",
"dependencies": {
"@types/cli-table": "^0.3.1",
"axios": "^1.4.0",
"chalk": "4.1.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"commander": "^10.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"scripts": {
"tsc": "tsc",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier --write .",
"build": "yarn tsc && yarn chmod",
"chmod": "chmod u+x ./bin/index.js"
},
"bin": {
"gh-labels": "./bin/index.js"
}
}