-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "nm-prune",
"version": "5.0.0",
"description": "Prune unneeded files (.md, .td, etc..) from node_modules folder. Super handy for Electron and AWS Lambda.",
"license": "MIT",
"repository": "pingyhq/nm-prune",
"author": {
"name": "DaveJ",
"email": "[email protected]",
"url": "github.com/davej"
},
"bin": "cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "preview && eslint . && ava"
},
"files": [
"index.js",
"cli.js",
"default-prune.json"
],
"keywords": [
"cli-app",
"cli",
"prune",
"node_modules",
"lambda",
"electron"
],
"dependencies": {
"enquirer": "^2.3.6",
"find-root": "^1.1.0",
"fs-extra": "^4.0.2",
"meow": "^9.0.0",
"pretty-bytes": "^4.0.2",
"walk-filtered": "^0.9.3"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.0",
"package-preview": "^4.0.0"
}
}