-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathesy.json
50 lines (50 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
50
{
"name": "credt",
"version": "0.0.1",
"description": "CRDT-like data structures in reasonml",
"files": ["library/*", "test/*"],
"esy": {
"build": "dune build -p credt",
"buildDev": "pesy",
"release": {
"releasedBinaries": ["CredtApp.exe"]
}
},
"buildDirs": {
"test": {
"require": ["tablecloth-native", "credt.lib", "rely.lib"],
"main": "TestCredt",
"name": "TestCredt.exe"
},
"library": {
"require": ["tablecloth-native", "calendar"],
"name": "credt.lib",
"namespace": "Credt"
},
"executable": {
"require": ["tablecloth-native", "calendar", "credt.lib"],
"main": "CredtApp",
"name": "CredtApp.exe"
}
},
"scripts": {
"pesy": "bash -c 'env PESY_MODE=update pesy'",
"test": "esy x TestCredt.exe",
"test-watch": "export TERM=xterm | fswatch -o ./test | xargs -n1 -I{} esy test"
},
"dependencies": {
"@esy-ocaml/reason": "*",
"@opam/calendar": "2.04",
"@opam/dune": ">=1.6.0",
"@opam/tablecloth-native": "*",
"@reason-native/rely": "^3.2.1",
"@opam/ocaml-lsp-server": "ocaml/ocaml-lsp:ocaml-lsp-server.opam",
"ocaml": "^4.4.0"
},
"devDependencies": {
"ocaml": "4.7.1004",
"refmterr": "*",
"pesy": "*",
"@opam/merlin": "*"
}
}