generated from esy-ocaml/hello-reason
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 944 Bytes
/
package.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
{
"name": "hello-reason",
"version": "0.1.0",
"description": "Example Reason Esy Project",
"license": "MIT",
"esy": {
"build": "dune build -p #{self.name}",
"buildDev": "refmterr dune build --promote-install-files --root . --only-package #{self.name}",
"NOTE": "Optional release Section. Customizes result of `esy release`",
"release": {
"rewritePrefix": true,
"bin": [
"Hello"
]
},
"buildEnv": {
"ODOC_SYNTAX": "re"
}
},
"scripts": {
"test": "esy x Hello",
"format": "esy dune build @fmt --auto-promote",
"doc": "esy dune build @doc"
},
"dependencies": {
"@opam/dune": ">=2.6",
"@reason-native/console": "*",
"@reason-native/pastel": "*",
"@esy-ocaml/reason": ">= 3.6.0 < 4.0.0",
"ocaml": "~4.10.0"
},
"devDependencies": {
"@opam/merlin": "*",
"@reason-native/rely": "*",
"refmterr": "*",
"@opam/odoc": "*"
}
}