-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
47
48
49
50
51
52
{
"name": "github-interact-cli",
"version": "3.3.4",
"description": "A CLI which lets you perform repetitive github tasks",
"license": "MIT",
"repository": "https://github.com/msaaddev/github-interact-cli",
"main": "index.js",
"author": {
"name": "Saad Irfan",
"email": "[email protected]",
"url": "https://twitter.com/msaaddev"
},
"bin": {
"github": "index.js",
"github-cli": "index.js",
"github-new": "utils/repo.js",
"github-get": "utils/gtRepo.js",
"github-issue": "utils/issue.js",
"github-stars": "utils/stars.js",
"github-email": "utils/email.js",
"github-delete": "utils/delete.js"
},
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"files": [
"index.js",
"utils/*"
],
"keywords": [
"github-cli",
"create-repo",
"cli",
"github automation",
"delete-repo",
"stargazers",
"issues",
"github-issues",
"get all repos",
"node.js automation"
],
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.0.0",
"clear": "^0.1.0",
"console-read-write": "^0.1.1",
"fs": "0.0.1-security"
},
"devDependencies": {
"prettier": "^2.3.0"
}
}