-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.03 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
53
{
"name": "who-unfollowed-me",
"version": "1.5.1",
"description": "A CLI that let's you know who recently unfollowed you on GitHub.",
"license": "MIT",
"repository": "https://github.com/msaaddev/who-unfollowed-me",
"main": "index.js",
"author": {
"name": "Saad Irfan",
"email": "mrsaadirfan@gmail.com",
"url": "https://twitter.com/msaaddev"
},
"bin": {
"unfollow": "index.js",
"git-unfollow": "index.js"
},
"files": [
"index.js",
"utils/*",
"follower.json",
"user.json"
],
"keywords": [
"unfollow",
"cli",
"github",
"github-cli",
"github-followers",
"github-users",
"git",
"who unfollowed me",
"msaaddev",
"Saad Irfan"
],
"dependencies": {
"axios": "^0.25.0",
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"cli-welcome": "^2.2.2",
"colors": "1.4.0",
"enquirer": "^2.3.6",
"exit-cli": "^1.0.3",
"jsonfile": "^6.0.1",
"log-symbols": "^4.1.0",
"ora": "^5.0.0"
},
"devDependencies": {
"prettier": "^2.3.0"
},
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
}
}