-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.01 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.01 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
{
"name": "folder2txt",
"version": "1.0.2",
"description": "CLI tool to combine text files in a folder into a single text file",
"main": "folder2txt.js",
"bin": {
"folder2txt": "./folder2txt.js"
},
"type": "module",
"scripts": {
"test": "ava"
},
"keywords": [
"cli",
"text",
"converter",
"folder",
"files"
],
"author": "James Hunt",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"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": [
"folder2txt.js"
],
"ava": {
"files": [
"test/**/*"
],
"timeout": "2m",
"serial": true,
"nodeArguments": [
"--experimental-modules",
"--no-warnings"
]
}
}