File: control

package info (click to toggle)
jo 1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: ansic: 1,914; sh: 566; makefile: 60; exp: 42
file content (27 lines) | stat: -rw-r--r-- 764 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
Source: jo
Section: utils
Priority: optional
Maintainer: Vincent Bernat <bernat@debian.org>
Build-Depends: debhelper-compat (= 12),
               bash-completion,
               pandoc,
               pkgconf,
Standards-Version: 4.5.0
Homepage: https://github.com/jpmens/jo
Vcs-Browser: https://salsa.debian.org/debian/jo
Vcs-Git: https://salsa.debian.org/debian/jo.git

Package: jo
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: command-line processor to output JSON from a shell
 jo creates a JSON string on stdout from words given it as arguments
 or read from stdin. It can generate both arrays and objects. Here is
 a short example:
 .
  $ jo -p name=jo n=17 parser@0
  {
     "name": "jo",
     "n": 17,
     "parser": false
  }