-
Notifications
You must be signed in to change notification settings - Fork 1
/
esy.json
40 lines (40 loc) · 1.14 KB
/
esy.json
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
{
"name": "reason-ls",
"esy": {
"build": "dune build -p #{self.name}",
"buildDev": "refmterr dune build --root . --only-package #{self.name}",
"install": "esy-installer #{self.target_dir / 'default' / self.name '.install'}",
"buildEnv": {
"ODOC_SYNTAX": "re"
}
},
"dependencies": {
"@opam/base": "*",
"@opam/cmdliner": "*",
"@opam/dune": ">= 2.0",
"@opam/lwt": "*",
"@opam/reason": "*",
"@opam/stdio": "*",
"@reason-native/console": "^0.1.0",
"ocaml": "~4.8.0"
},
"devDependencies": {
"@opam/ocamlformat": "~0.23.0",
"@opam/dune-release": "*",
"@opam/merlin": "*",
"@opam/odoc": "^2.1.1",
"@opam/utop": "*",
"@reason-native/rely": "*",
"refmterr": "*"
},
"scripts": {
"start": "esy x reason-ls",
"test": "esy dune exec test/test_runner.exe",
"doc": "esy dune build @doc",
"doc-path": "esy echo #{self.target_dir}/default/_doc/_html/index.html",
"format": "esy dune build @fmt --auto-promote",
"watch": "esy dune build -p #{self.name} --watch",
"utop": "esy dune utop lib -- -implicit-bindings",
"release": "./script/release.sh"
}
}