-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdune-project
45 lines (35 loc) · 827 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
(lang dune 2.7)
(name promise_jsoo)
(license MIT)
(maintainers "Max Lantas <[email protected]>")
(authors "Max Lantas <[email protected]>")
(source
(github mnxn/promise_jsoo))
(documentation https://mnxn.github.io/promise_jsoo/)
(generate_opam_files true)
(implicit_transitive_deps false)
(package
(name promise_jsoo)
(synopsis "Js_of_ocaml bindings to JS Promises with supplemental functions")
(depends
(ocaml
(>= 4.08))
js_of_ocaml
(gen_js_api
(>= 1.0.8))
(webtest :with-test)
(webtest-js :with-test)
(conf-npm :with-test)))
(package
(name promise_jsoo_lwt)
(synopsis "Conversion functions between JS Promises and Lwt Promises")
(depends
(ocaml
(>= 4.08))
promise_jsoo
lwt
(gen_js_api
(>= 1.0.8))
(webtest :with-test)
(webtest-js :with-test)
(conf-npm :with-test)))