-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathesy.json
More file actions
26 lines (26 loc) · 722 Bytes
/
esy.json
File metadata and controls
26 lines (26 loc) · 722 Bytes
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
{
"name": "preface",
"version": "0.0.1",
"description": "Preface is a library dedicated to functional programming in OCaml.(Named in reference of Prelude)",
"license": "MIT",
"scripts": {
"test": "dune runtest --no-buffer -j 1",
"clean": "dune clean",
"fmt":"dune build @fmt --auto-promote",
"doc": "dune build @doc"
},
"esy": {
"build": "dune build -p #{self.name}"
},
"dependencies": {
"ocaml": ">=4.12",
"@opam/dune" : ">= 2.7.1"
},
"devDependencies": {
"@opam/alcotest" : "*",
"@opam/qcheck-core": "*",
"@opam/qcheck-alcotest": "*",
"@opam/mdx": "*",
"@opam/odoc" : "*"
}
}