File: control

package info (click to toggle)
golang-github-tdewolff-minify 2.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,260 kB
  • sloc: xml: 16,450; sh: 26; makefile: 4
file content (65 lines) | stat: -rw-r--r-- 2,819 bytes parent folder | download
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
Source: golang-github-tdewolff-minify
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Section: devel
Testsuite: autopkgtest-pkg-go
Priority: optional
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
               golang-github-dustin-go-humanize-dev,
               golang-github-fsnotify-fsnotify-dev,
               golang-github-matryer-try-dev,
               golang-github-spf13-pflag-dev,
               golang-github-tdewolff-parse-dev (>= 2.4.2~),
               golang-github-tdewolff-test-dev (>= 1.0.6~)
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-tdewolff-minify
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-tdewolff-minify.git
Homepage: https://github.com/tdewolff/minify
Rules-Requires-Root: no
XS-Go-Import-Path: github.com/tdewolff/minify

Package: golang-github-tdewolff-minify-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-github-dustin-go-humanize-dev,
         golang-github-fsnotify-fsnotify-dev,
         golang-github-matryer-try-dev,
         golang-github-spf13-pflag-dev,
         golang-github-tdewolff-parse-dev (>= 2.4.2~),
         golang-github-tdewolff-test-dev (>= 1.0.6~)
Description: Go minifiers for web formats
 github.com/tdewolff/minify is a minifier package written in Go.
 It provides HTML5, CSS3, JS, JSON, SVG and XML minifiers and an interface
 to implement any other minifier.
 .
 Minification is the process of removing bytes from a file (such as
 whitespace) without changing its output and therefore shrinking
 its size and speeding up transmission over the Internet and possibly
 parsing.  The implemented minifiers are high performance and streaming,
 which implies O(n).
 .
 The core functionality associates mimetypes with minification functions,
 allowing embedded resources (like CSS or JS within HTML files) to be
 minified as well. Users can add new implementations that are triggered
 based on a mimetype (or pattern), or redirect to an external command
 (like ClosureCompiler, UglifyCSS, ...)

Package: minify
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends}
Built-Using: ${misc:Built-Using}
Description: CLI implementation of the Go minify library package
 /usr/bin/minify is a CLI implementation of the github.com/tdewolff/minify
 Go library package.
 .
 It provides HTML5, CSS3, JS, JSON, SVG and XML minifiers.
 .
 Minification is the process of removing bytes from a file (such as
 whitespace) without changing its output and therefore shrinking
 its size and speeding up transmission over the Internet and possibly
 parsing.  The implemented minifiers are high performance and streaming,
 which implies O(n).