-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 3.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@putout/minify",
"version": "4.7.2",
"type": "module",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "🐊Putout-based minifier",
"homepage": "https://github.com/putoutjs/minify#readme",
"files": [
"bundle/minify.min.js",
"README.md"
],
"exports": {
".": "./bundle/minify.min.js",
"./dev": "./lib/minify.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/putoutjs/minify.git"
},
"scripts": {
"wisdom": "madrun wisdom",
"test": "madrun test",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"coverage": "madrun coverage",
"coverage:html": "madrun coverage:html",
"report": "madrun report",
"build": "madrun build",
"minify": "madrun minify"
},
"keywords": [
"putout",
"minify",
"AST",
"babel",
"printer",
"api",
"traverse",
"generate"
],
"devDependencies": {
"@putout/eslint-flat": "^2.0.0",
"@putout/plugin-apply-optional-chaining": "^6.0.0",
"@putout/plugin-apply-shorthand-properties": "^5.1.0",
"@putout/plugin-apply-template-literals": "^3.0.0",
"@putout/plugin-conditions": "^5.0.0",
"@putout/plugin-convert-arguments-to-rest": "^3.1.0",
"@putout/plugin-convert-to-arrow-function": "^4.0.0",
"@putout/plugin-declare": "^4.0.0",
"@putout/plugin-for-of": "^6.0.0",
"@putout/plugin-logical-expressions": "^6.0.0",
"@putout/plugin-merge-destructuring-properties": "^9.0.0",
"@putout/plugin-merge-duplicate-functions": "^2.0.0",
"@putout/plugin-merge-duplicate-imports": "^11.0.0",
"@putout/plugin-minify": "^8.9.1",
"@putout/plugin-new": "^3.0.1",
"@putout/plugin-promises": "^15.0.0",
"@putout/plugin-regexp": "^9.0.0",
"@putout/plugin-remove-console": "^6.0.0",
"@putout/plugin-remove-debugger": "^7.0.0",
"@putout/plugin-remove-empty": "^12.1.0",
"@putout/plugin-remove-nested-blocks": "^6.3.0",
"@putout/plugin-remove-unreachable-code": "^1.2.0",
"@putout/plugin-remove-unreferenced-variables": "^4.0.0",
"@putout/plugin-remove-unused-expressions": "^9.0.0",
"@putout/plugin-remove-unused-variables": "^9.0.0",
"@putout/plugin-remove-useless-arguments": "^9.0.0",
"@putout/plugin-remove-useless-else": "^2.0.0",
"@putout/plugin-remove-useless-return": "^7.0.0",
"@putout/plugin-remove-useless-spread": "^11.0.0",
"@putout/plugin-remove-useless-variables": "^12.5.0",
"@putout/plugin-reuse-duplicate-init": "^5.0.0",
"@putout/plugin-simplify-ternary": "^7.0.0",
"@putout/plugin-types": "^5.0.0",
"@putout/printer": "^9.18.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^6.0.1",
"c8": "^10.1.2",
"eslint": "^9.2.0",
"eslint-plugin-putout": "^23.1.0",
"fullstore": "^3.0.0",
"just-kebab-case": "^4.2.0",
"just-snake-case": "^3.2.0",
"madrun": "^10.0.0",
"minify": "^11.1.0",
"mock-require": "^3.0.3",
"montag": "^1.0.0",
"nodemon": "^3.0.1",
"putout": "^36.0.0",
"redlint": "^3.14.1",
"rendy": "^4.1.3",
"rollup": "^4.5.0",
"rollup-plugin-node-externals": "^7.0.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"supertape": "^10.0.0",
"try-catch": "^3.0.0"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}