-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 739 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 739 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
{
"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"
]
}
},
"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.5.0",
"refmterr": "*",
"ocaml": "~4.6.0"
},
"devDependencies": {
"@opam/merlin": "*",
"ocaml": "~4.6.0",
"@opam/odoc": "*"
}
}