-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "github-follow",
"version": "1.0.0",
"description": "This tool helps you analyze and manage your GitHub network of followers and the users you're following. It uses the GitHub API to fetch and process data about your network, allowing you to find users you're not following back, discover new users to follow, and more.",
"main": "followers-check.js",
"scripts": {
"start": "node non-follower.js",
"check": "node followers-check.js",
"unfollow": "node manual-unfollow.js",
"discover" :"node new-users.js",
"followback" : "node followers-follow.js",
"new-users": "node new-users.js"
},
"keywords": [
"follow",
"unfollow"
],
"author": "uzitrake",
"license": "MIT licence",
"dependencies": {
"axios": "^1.6.8",
"dotenv": "^16.4.5"
}
}