forked from sindresorhus/trash-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 980 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
53
54
55
56
57
58
59
60
{
"name": "trash-cli",
"version": "1.4.0",
"description": "Move files and folders to the trash",
"license": "MIT",
"repository": "sindresorhus/trash-cli",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"bin": {
"trash": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"trash",
"recycle",
"bin",
"rm",
"rmrf",
"rimraf",
"remove",
"delete",
"del",
"file",
"files",
"dir",
"directory",
"directories",
"folder",
"folders",
"xdg"
],
"dependencies": {
"meow": "^3.7.0",
"trash": "^4.0.0",
"update-notifier": "^1.0.2"
},
"devDependencies": {
"ava": "*",
"execa": "^0.4.0",
"path-exists": "^3.0.0",
"temp-write": "^2.0.1",
"xo": "*"
},
"xo": {
"esnext": true
}
}