-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathquery-json.opam
More file actions
46 lines (44 loc) · 1.39 KB
/
query-json.opam
File metadata and controls
46 lines (44 loc) · 1.39 KB
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.0.0~beta-1"
synopsis: "Faster, simpler and more portable implementation of `jq` in OCaml"
description: """
query-json is a faster and simpler re-implementation of jq's language in OCaml, compiled to a native binary (query-json) and as a JavaScript library (query-json-js).
query-json is a CLI to run small programs against JSON, the same idea as sed but for JSON files.
Play with it in the online playground: https://query-json.pages.dev"""
maintainer: ["David Sancho <dsnxmoreno@gmail.com>"]
authors: ["David Sancho <dsnxmoreno@gmail.com>"]
license: "MIT"
homepage: "https://github.com/davesnx/query-json"
bug-reports: "https://github.com/davesnx/query-json/issues"
depends: [
"ocaml" {>= "5.4.0"}
"dune" {>= "3.17" & >= "3.17"}
"dune-build-info"
"cmdliner" {>= "1.1.0"}
"sedlex"
"ppx_deriving"
"mosaic"
"zarith"
"alcotest" {with-test}
"ocamlformat" {with-dev-setup}
"ocaml-lsp-server" {with-dev-setup}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/davesnx/query-json.git"
conflicts: [ "ocaml-option-bytecode-only" ] # This ensures that the project is only built with the native compiler
x-maintenance-intent: ["(latest)"]