forked from zhangrenyang/delete_node_modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "moppet",
"version": "1.1.1",
"description": "A CLI tool to remove all deep node_modules from a directory",
"main": "dist/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bin": {
"mop": "./dist/index.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"premake": "yarn build",
"postinstall": "node dist/lib/commands/postinstall.js"
},
"files": [
"dist"
],
"keywords": [
"node_modules",
"purge",
"clean",
"delete",
"remove",
"garbage",
"modules",
"weight",
"lightweight",
"disk",
"space"
],
"author": "Fernando Dorantes <fernando@dorant.es>",
"license": "MIT",
"dependencies": {
"@supercharge/promise-pool": "^2.4.0",
"byte-size": "^8.1.0",
"chalk": "^4.1.2",
"commander": "^10.0.0",
"fast-folder-size": "^1.7.1",
"glob": "^7.1.7",
"node-emoji": "^1.11.0",
"rimraf": "^4.1.2"
},
"devDependencies": {
"@types/node": "^18.13.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/fdorantesm/moppet/issues"
}
}