builderman verion 0.1.0, initial commit/release.

This commit is contained in:
2025-05-19 23:05:15 -04:00
parent 0578647c3f
commit ec0ffccdb2
1281 changed files with 218046 additions and 0 deletions

66
node_modules/minify/package.json generated vendored Normal file
View File

@@ -0,0 +1,66 @@
{
"name": "minify",
"version": "6.0.1",
"description": "Minifier of js, css, html and img",
"homepage": "http://coderaiser.github.io/minify",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"keywords": [
"minify",
"minimize",
"js",
"css",
"img",
"html",
"base64"
],
"repository": {
"type": "git",
"url": "http://github.com/coderaiser/minify.git"
},
"bin": {
"minify": "bin/minify.js"
},
"nyc": {
"exclude": [
"**/*.spec.js",
".*",
"test"
]
},
"scripts": {
"test": "madrun test",
"coverage": "madrun coverage",
"report": "madrun report",
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"lint:bin": "madrun lint:bin",
"lint:lib": "madrun lint:lib",
"putout": "madrun putout"
},
"dependencies": {
"clean-css": "^4.1.6",
"css-b64-images": "~0.2.5",
"debug": "^4.1.0",
"html-minifier-terser": "^5.1.1",
"terser": "^5.3.2",
"try-to-catch": "^3.0.0"
},
"main": "lib/minify.js",
"license": "MIT",
"engines": {
"node": ">=12"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^7.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-putout": "^5.1.1",
"madrun": "^7.0.4",
"nyc": "^15.0.0",
"putout": "^10.0.1",
"supertape": "^2.0.1"
},
"publishConfig": {
"access": "public"
}
}