-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 1.71 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "delete-empty",
"description": "Recursively delete all empty folders in a directory and child directories.",
"version": "3.0.0",
"homepage": "https://github.com/jonschlinkert/delete-empty",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Sven Schoenung (http://sven.schoenung.org)",
"Vittorio Palmisano (http://c3lab.poliba.it/index.php/VittorioPalmisano)"
],
"repository": "jonschlinkert/delete-empty",
"bugs": {
"url": "https://github.com/jonschlinkert/delete-empty/issues"
},
"license": "MIT",
"files": [
"bin",
"index.js"
],
"main": "index.js",
"bin": {
"delete-empty": "bin/cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"ansi-colors": "^4.1.0",
"minimist": "^1.2.0",
"path-starts-with": "^2.0.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"@folder/readdir": "^2.0.0",
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3",
"write": "^1.0.3"
},
"keywords": [
"del",
"delete",
"dir",
"directory",
"empty",
"files",
"folder",
"recurse",
"recursive",
"remove"
],
"verb": {
"run": true,
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"reflinks": [
"verb"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"copy",
"delete",
"fs-utils",
"matched"
]
},
"lint": {
"reflinks": true
}
},
"lintDeps": {
"devDependencies": {
"files": {
"patterns": [
"tree.js"
]
}
}
}
}