-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
52 lines (52 loc) · 944 Bytes
/
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": "git2txt",
"version": "1.0.6",
"description": "CLI tool to convert GitHub repositories to text files",
"main": "index.js",
"bin": {
"git2txt": "./index.js"
},
"type": "module",
"scripts": {
"test": "chmod +x index.js && ava",
"prepare": "chmod +x index.js",
"postinstall": "chmod +x index.js"
},
"keywords": [
"cli",
"github",
"text",
"converter",
"repository"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"degit": "^2.8.4",
"filesize": "^10.1.0",
"glob": "^10.3.10",
"isbinaryfile": "^5.0.4",
"meow": "^12.0.1",
"ora": "^7.0.1"
},
"devDependencies": {
"ava": "^5.3.1"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js"
],
"ava": {
"files": [
"test/**/*"
],
"timeout": "2m",
"nodeArguments": [
"--experimental-modules",
"--no-warnings"
]
}
}