File: control

package info (click to toggle)
golang-github-tidwall-pretty 1.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bullseye, sid, trixie
  • size: 84 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 1,291 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
Source: golang-github-tidwall-pretty
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Andreas Henriksson <andreas@fatal.se>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any,
Standards-Version: 4.2.1
Homepage: https://github.com/tidwall/pretty
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-tidwall-pretty
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-tidwall-pretty.git
XS-Go-Import-Path: github.com/tidwall/pretty
Testsuite: autopkgtest-pkg-go

Package: golang-github-tidwall-pretty-dev
Architecture: all
Depends: ${misc:Depends},
Description: Efficient JSON beautifier and compactor for Go
 Pretty is a Go package that provides fast methods for formatting JSON for
 human readability, or to compact JSON for smaller payloads.
 .
  * pretty.Pretty will reformat the JSON for readability.
  * pretty.Color will add color to the result for printing to the terminal.
    The second param is used for a customizing the style, and passing nil will
    use the default pretty.TerminalStyle.
  * pretty.Ugly will reformat the JSON to make it more compact.
 .
 There's a PrettyOptions(json, opts) function which allows for customizing the
 output.