Imports of minify command

PathSynopsis
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/dustin/go-humanizePackage humanize converts boring ugly numbers to human-friendly strings and back.
github.com/fsnotify/fsnotifyPackage fsnotify provides a cross-platform interface for file system notifications.
github.com/matryer/try
github.com/spf13/pflagPackage pflag is a drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags.
github.com/tdewolff/minify/v2Package minify relates MIME type to minifiers.
github.com/tdewolff/minify/v2/cssPackage css minifies CSS3 following the specifications at http://www.w3.org/TR/css-syntax-3/.
github.com/tdewolff/minify/v2/htmlPackage html minifies HTML5 following the specifications at http://www.w3.org/TR/html5/syntax.html.
github.com/tdewolff/minify/v2/jsPackage js minifies ECMAScript 2021 following the language specification at https://tc39.es/ecma262/.
github.com/tdewolff/minify/v2/jsonPackage json minifies JSON following the specifications at http://json.org/.
github.com/tdewolff/minify/v2/svgPackage svg minifies SVG1.1 following the specifications at http://www.w3.org/TR/SVG11/.
github.com/tdewolff/minify/v2/xmlPackage xml minifies XML1.0 following the specifications at http://www.w3.org/TR/xml/.
ioPackage io provides basic interfaces to I/O primitives.
io/ioutilPackage ioutil implements some I/O utility functions.
logPackage log implements a simple logging package.
net/urlPackage url parses URLs and implements query escaping.
osPackage os provides a platform-independent interface to operating system functionality.
os/signalPackage signal implements access to incoming signals.
pathPackage path implements utility routines for manipulating slash-separated paths.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
regexpPackage regexp implements regular expression search.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
sortPackage sort provides primitives for sorting slices and user-defined collections.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
timePackage time provides functionality for measuring and displaying time.