forked from duniul/clean-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "clean-modules",
"author": "Daniel Grefberg <[email protected]>",
"version": "2.0.5",
"description": "Clean up/prune unnecessary files and reduce the size of your `node_modules` directory. Useful for CI caches or for reducing the size of your AWS Lambdas/Azure Functions.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/duniul/clean-modules.git"
},
"homepage": "https://github.com/duniul/clean-modules#readme",
"bugs": {
"url": "https://github.com/duniul/clean-modules/issues"
},
"keywords": [
"node",
"node-modules",
"npm",
"yarn",
"cli-tool",
"ci"
],
"license": "ISC",
"engines": {
"node": ">=12"
},
"files": [
"lib",
".cleanmodules-default",
"!.tsbuildinfo"
],
"packageManager": "[email protected]",
"bin": "bin/cli.js",
"scripts": {
"cli": "node bin/cli.js",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "yarn build",
"lint": "eslint src",
"release": "semantic-release"
},
"dependencies": {
"arg": "^5.0.1",
"picomatch": "^2.3.0",
"pretty-bytes": "^5.6.0",
"pretty-ms": "^7.0.1",
"supports-color": "^8.1.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@semantic-release/changelog": "6.0.0",
"@semantic-release/git": "10.0.0",
"@types/jest": "27.0.2",
"@types/mock-fs": "4.13.1",
"@types/node": "16",
"@types/picomatch": "2.2.6",
"@types/supports-color": "8.1.1",
"@types/yargs": "17.0.3",
"eslint": "7.32.0",
"eslint-config-acast": "6.0.3",
"jest": "27.2.1",
"mock-fs": "5.1.1",
"prettier": "2.4.1",
"prettier-plugin-organize-imports": "2.3.4",
"rimraf": "3.0.2",
"semantic-release": "18.0.0",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
}
}