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{
"name": "best-github-backup",
"version": "2.0.10",
"description": "the best GitHub backup program (trust me bro)",
"main": "src/index.mjs",
"bin": {
"best-github-backup": "src/index.mjs"
},
"scripts": {
"circles": "madge --extensions mjs --circular src",
"lint": "eslint {*.mjs,src/**/*.mjs}",
"lint:fix": "eslint --fix {*.mjs,src/**/*.mjs}",
"test": "npm run lint && npm run circles && test/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctcpip/best-github-backup.git"
},
"author": "Chris de Almeida",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ctcpip/best-github-backup/issues"
},
"homepage": "https://github.com/ctcpip/best-github-backup",
"devDependencies": {
"eslint": "^9.33.0",
"eslint-config-ultra-mega": "^2.1.0",
"madge": "^8.0.0"
},
"dependencies": {
"colorette": "^2.0.20",
"fortune": "^5.5.19",
"fortune-fs": "^1.2.1",
"octokit": "^5.0.3"
},
"files": [
"src"
],
"engines": {
"node": ">=20"
}
}