forked from tmattio/ocaml-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
64 lines (53 loc) · 1.11 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
(lang dune 2.0)
(name ocaml-node)
(documentation "https://tmattio.github.io/node/")
(source
(github tmattio/node))
(license MIT)
(authors "Thibaut Mattio")
(maintainers "Thibaut Mattio")
(generate_opam_files true)
(package
(name node)
(synopsis "NodeJS bindings for OCaml")
(description "NodeJS bindings for OCaml")
(depends
(ocaml
(>= 4.08.0))
dune
(gen_js_api
(>= 1.0.7))
js_of_ocaml
js_of_ocaml-compiler
ojs
(odoc :with-doc)))
(package
(name ocaml-node)
(synopsis "Virtual library for a NodeJS API")
(description "Virtual library for a NodeJS API")
(depends
(ocaml
(>= 4.08.0))
dune
(odoc :with-doc)))
(package
(name ocaml-node-js)
(synopsis "JS backend for ocaml-node using NodeJS bindings")
(description "JS backend for ocaml-node using NodeJS bindings")
(depends
(ocaml
(>= 4.08.0))
dune
js_of_ocaml-ppx
(odoc :with-doc)))
(package
(name ocaml-node-unix)
(synopsis "Native backend for ocaml-node using libuv")
(description "Native backend for ocaml-node using libuv")
(depends
(ocaml
(>= 4.08.0))
dune
luv
(odoc :with-doc)
(alcotest :with-test)))