-
Notifications
You must be signed in to change notification settings - Fork 2
/
dune-project
75 lines (66 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
74
75
(lang dune 3.0)
;; Project configuration
(name nightmare)
(generate_opam_files true)
;; Project description
(source (github funkywork/nightmare))
(license MIT)
(authors "Funkywork")
(maintainers "Funkywork")
;; Packages description
(package
(name nightmare-test)
(synopsis "Test utilities for Nightmare")
(description "Some shortcuts for writting test for a Nightmare application (or library)")
(depends
(ocaml (>= 5.0.0))
(lwt (>= 5.6.1))
alcotest))
(package
(name nightmare)
(synopsis "An ad-hoc framework for writing web application using OCaml")
(description "An ad-hoc framework (that should fit well with Dream) for writting OCaml web application")
(depends
(ocaml (>= 5.0.0))
(lwt (>= 5.6.1))
(preface (>= 1.0.0))
(alcotest :with-test)
(nightmare-test (and (= :version) :with-test))))
(package
(name nightmare-dream)
(synopsis "Glue between Nightmare and Dream")
(description "An overlay built on top of Dream for using Nightmare tools")
(depends
(ocaml (>= 5.0.0))
(dream (>= 1.0.0~alpha5))
(nightmare (= :version))))
(package
(name nightmare-tyxml)
(synopsis "Glue between Nightmare and TyXML")
(description "Facilitates interaction between Nightmare and TyXML")
(depends
(ocaml (>= 5.0.0))
(tyxml (>= 4.6.0))
(nightmare (= :version))))
(package
(name nightmare_js)
(synopsis "The JavaScript Runtime for Nightmare JS Application")
(description "A list of helpers to deal with Nightmare inside a Js_of_ocaml application")
(depends
(ocaml (>= 5.0.0))
(lwt (>= 5.6.1))
(preface (>= 1.0.0))
(js_of_ocaml-compiler (>= 5.6.0))
(js_of_ocaml-ppx (>= 5.6.0))
(js_of_ocaml-lwt (>= 5.6.0))
(nightmare (= :version))))
(package
(name nightmare_js-vdom)
(synopsis "A companion library and glue for ocaml-vdom and Nightmare")
(description "Provides additional HTML tags and attributes for the ocaml-vdom library and adds support for Nightmare services")
(depends
(ocaml (>= 5.0.0))
(tyxml (>= 4.5.0))
(vdom (>= 0.3))
(nightmare-tyxml (= :version))
(nightmare_js (= :version))))