-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.21 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
56
{
"name": "modclean",
"version": "2.1.2",
"description": "Remove unwanted files and directories from your node_modules folder",
"main": "index.js",
"bin": {
"modclean": "./bin/modclean.js"
},
"scripts": {
"test": "npm install && mocha test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ModClean/modclean"
},
"keywords": [
"module",
"cleanup",
"clean",
"module-cleanup",
"node_modules",
"delete",
"flatten",
"path",
"limit",
"less",
"files",
"folders"
],
"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",
"dependencies": {
"async-each-series": "^1.1.0",
"chalk": "^1.1.3",
"clui": "^0.3.1",
"commander": "^2.9.0",
"empty-dir": "^0.2.1",
"glob": "^7.1.1",
"lodash.uniq": "^4.5.0",
"modclean-patterns-default": "latest",
"rimraf": "^2.5.4",
"subdirs": "^1.0.0",
"update-notifier": "^1.0.3"
},
"engines": {
"node": ">=6.9.0"
},
"engineStrict": true
}