-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.84 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.84 KB
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
54
{
"name": "stalk",
"version": "4.0.3",
"description": "Stalk - Social Tracking & Auto-Link Kit - Automatically manage mutual following relationships on GitHub",
"main": "main.js",
"type": "module",
"scripts": {
"start": "node main.js",
"dry-run": "node main.js --dry-run",
"follow": "node main.js --follow-only",
"unfollow": "node main.js --unfollow-only",
"dry-run:follow": "node main.js --dry-run --follow-only",
"dry-run:unfollow": "node main.js --dry-run --unfollow-only",
"export": "node main.js --dry-run --export results.txt",
"export:follow": "node main.js --dry-run --follow-only --export follow.txt",
"export:unfollow": "node main.js --dry-run --unfollow-only --export unfollow.txt",
"version:bump": "node scripts/version-manager.js bump",
"version:major": "node scripts/version-manager.js major",
"version:minor": "node scripts/version-manager.js minor",
"version:patch": "node scripts/version-manager.js patch",
"version:info": "node scripts/version-manager.js info",
"deploy": "node scripts/deploy.js deploy",
"deploy:major": "node scripts/deploy.js deploy major",
"deploy:minor": "node scripts/deploy.js deploy minor",
"deploy:patch": "node scripts/deploy.js deploy patch",
"predeploy": "npm run lint",
"postdeploy": "echo 'Deployment completed successfully!'"
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"dotenv": "^16.3.1"
},
"keywords": [
"github",
"api",
"follow",
"unfollow",
"mutual",
"automation",
"stalk",
"social",
"tracking"
],
"author": "oluiscabral",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oluiscabral/stalk.git"
},
"homepage": "https://github.com/oluiscabral/stalk#readme",
"bugs": {
"url": "https://github.com/oluiscabral/stalk/issues"
}
}