-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathezjsonm.opam
34 lines (33 loc) · 1.03 KB
/
ezjsonm.opam
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
opam-version: "2.0"
maintainer: "[email protected]"
authors: "Thomas Gazagnaire"
license: "ISC"
tags: ["org:mirage" "org:ocamllabs"]
homepage: "https://github.com/mirage/ezjsonm"
doc: "https://mirage.github.io/ezjsonm/"
bug-reports: "https://github.com/mirage/ezjsonm/issues"
depends: [
"ocaml" {>="4.08.0"}
"dune" {>= "2.0"}
"alcotest" {with-test & >= "1.5.0"}
"jsonm" {>= "1.0.0"}
"uutf"
"js_of_ocaml-compiler" {with-test}
"conf-npm" {with-test}
"sexplib0"
"hex"
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
dev-repo: "git+https://github.com/mirage/ezjsonm.git"
synopsis: "Simple interface on top of the Jsonm JSON library"
description: """
Ezjsonm provides more convenient (but far less flexible)
input and output functions that go to and from `string` values.
This avoids the need to write signal code, which is useful for
quick scripts that manipulate JSON.
More advanced users should go straight to the Jsonm library and
use it directly, rather than be saddled with the Ezjsonm interface.
"""