-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 922 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 922 Bytes
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
{
"name": "nm-cleanup",
"type": "module",
"version": "1.0.10",
"description": "CLI tool to remove unnecessary directories from outdated projects",
"repository": {
"type": "git",
"url": "git+https://github.com/gVguy/nm-cleanup.git"
},
"main": "index.js",
"bin": {
"nm-cleanup": "index.js",
"nmc": "index.js"
},
"files": [
"index.js"
],
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"c-test-fs": "node test/create-test-folders.js",
"prepublishOnly": "npm run test"
},
"keywords": [
"cleanup",
"maintenance",
"directory",
"outdated",
"stale",
"node_modules",
"space"
],
"author": "Ivan Che",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"figlet": "^1.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0"
}
}