-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.01 KB
/
package.json
File metadata and controls
64 lines (64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "del-cli",
"version": "7.0.0",
"description": "Delete files and directories - Cross-platform",
"license": "MIT",
"repository": "sindresorhus/del-cli",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"del-cli": "./cli.js",
"del": "./cli.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"delete",
"del",
"remove",
"destroy",
"trash",
"unlink",
"clean",
"cleaning",
"cleanup",
"rm",
"rmrf",
"rimraf",
"rmdir",
"glob",
"file",
"files",
"folder",
"directory",
"fs",
"filesystem",
"cross-platform"
],
"dependencies": {
"del": "^8.0.1",
"meow": "^14.0.0",
"presentable-error": "^0.0.1"
},
"devDependencies": {
"ava": "^6.4.1",
"execa": "^9.6.0",
"temp-write": "^6.0.0",
"xo": "^1.2.2"
}
}