-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdune-project
47 lines (41 loc) · 1023 Bytes
/
dune-project
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
(lang dune 2.7)
(using menhir 2.0)
(explicit_js_mode)
(cram enable)
(name fex)
(generate_opam_files true)
(version unreleased)
(authors "Paul Monson")
(maintainers "[email protected]")
(license MIT)
(source (uri "git+https://github.com/pmonson711/fex/"))
(homepage "https://github.com/pmonson711/fex/")
(bug_reports "https://github.com/pmonson711/fex/issues")
(documentation "https://github.com/pmonson711/fex/")
(package
(name fex)
(synopsis "Parser generater for fex")
(description "Parser generater for fex")
(depends
(dune (>= 2.5))
(ocaml (>= 4.08))
(js_of_ocaml-compiler (>= 3.7))
(js_of_ocaml-ppx (>= 3.7))
(cmdliner (>= 0.9))
(bos (>= 0.2))
(brr (>= 0.0.1))
(containers (>= 3.2))
(menhir (>= 20200624))
(yojson (>= 1.7.0))
(ppx_deriving (>= 4.4))
;; Testing
(alcotest (and :with-test (>= 1.1)))
(merlin :dev)
(ocamlformat :dev)
(ocp-indent :dev)
(ocp-index :dev)
(odig :dev)
(utop :dev)
(bisect_ppx :with-test)
)
)