-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.47 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.47 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
{
"name": "modclean",
"version": "3.0.0-beta.1",
"description": "Remove unwanted files and directories from your node_modules folder",
"main": "index.js",
"bin": {
"modclean": "./bin/modclean.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha -S"
},
"repository": {
"type": "git",
"url": "https://github.com/ModClean/modclean/tree/3.0.0-dev"
},
"keywords": [
"module",
"cleanup",
"clean",
"module-cleanup",
"node_modules",
"delete",
"flatten",
"path",
"limit",
"less",
"files",
"folders",
"prune",
"cruft",
"delete",
"npm"
],
"author": "Kyle Ross <thejavascriptguy@gmail.com>",
"contributors": [
"Benjamin Santalucia (https://github.com/ben8p)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ModClean/modclean/issues"
},
"homepage": "https://github.com/ModClean/modclean/tree/3.0.0-dev",
"dependencies": {
"await-handler": "^1.1.0",
"chalk": "^2.4.1",
"commander": "^2.9.0",
"empty-dir": "^1.0.0",
"glob": "^7.1.2",
"lodash.uniq": "^4.5.0",
"ora": "^2.1.0",
"progress": "^2.0.0",
"rimraf": "^2.5.4",
"subdirs": "^1.0.1"
},
"peerDependencies": {
"modclean-patterns-default": "latest"
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true,
"devDependencies": {
"chai": "^4.1.2",
"fs-extra": "^6.0.1",
"get-folder-size": "^2.0.0",
"mocha": "^5.2.0",
"semver-regex": "^2.0.0"
}
}