forked from esy-ocaml/hello-reason
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 790 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 790 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
27
28
29
30
31
32
33
34
35
36
{
"name": "hello-reason",
"version": "0.1.0",
"description": "Example Reason Esy Project",
"license": "MIT",
"esy": {
"build": "refmterr dune build -p #{self.name}",
"NOTE": "Optional release Section. Customizes result of `esy release`",
"release": {
"bin": [
"Hello"
]
},
"buildEnv": {
"ODOC_SYNTAX": "re"
}
},
"scripts": {
"test": "esy x Hello",
"doc": "esy dune build @doc"
},
"dependencies": {
"@opam/dune": "*",
"@reason-native/console": "*",
"@reason-native/pastel": "*",
"@reason-native/rely": "*",
"@esy-ocaml/reason": ">= 3.4.0 < 3.6.0",
"refmterr": "*",
"ocaml": "~4.6.0"
},
"devDependencies": {
"@opam/merlin": "*",
"ocaml": "~4.6.0",
"@opam/odoc": "*"
}
}