-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 1.72 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 1.72 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
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
90
91
92
93
94
95
96
97
{
"name": "force-del-cli",
"version": "1.3.1",
"description": "Force delete files or folders using globs",
"license": "MIT",
"repository": "https://github.com/luftywiranda13/force-del-cli",
"author": {
"name": "Lufty Wiranda",
"email": "lufty.wiranda@gmail.com",
"url": "https://www.luftywiranda.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"precommit": "remove-lockfiles && lint-staged",
"test:watch": "jest --watch",
"test": "xo && jest"
},
"bin": {
"force-del": "cli.js",
"force-del-cli": "cli.js"
},
"files": [
"cli.js"
],
"dependencies": {
"force-del": "^2.0.0",
"meow": "^4.0.0",
"plur": "^3.0.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"async-to-gen": "^1.3.3",
"execa": "^0.10.0",
"fixturez": "^1.1.0",
"fs-extra": "^5.0.0",
"husky": "^0.14.3",
"jest": "^22.1.1",
"lint-staged": "^7.0.0",
"remove-lockfiles": "^2.1.1",
"xo": "^0.20.3"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js$": "async-to-gen"
}
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true
},
"xo": {
"envs": [
"jest"
],
"prettier": true,
"space": true
},
"keywords": [
"clean",
"cleaning",
"cleanup",
"cli-app",
"cli",
"cross-platform",
"del",
"delete",
"destroy",
"dir",
"directory",
"file",
"files",
"filesystem",
"folder",
"fs",
"glob",
"remove",
"rimraf",
"rm",
"rmdir",
"rmrf",
"trash",
"unlink"
]
}