forked from grain-lang/binaryen.ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 KB
/
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
39
40
41
42
43
{
"name": "@grain/binaryen.ml",
"version": "0.10.0",
"description": "OCaml bindings for Binaryen.",
"author": "Oscar Spencer <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"ocaml": ">= 4.11.0 < 4.13.0",
"@opam/dune": "^2.9.1",
"@opam/dune-configurator": "^2.9.1",
"@opam/js_of_ocaml": "^3.10.0",
"@opam/js_of_ocaml-ppx": "^3.10.0"
},
"devDependencies": {
"@opam/js_of_ocaml-compiler": "^3.10.0",
"@opam/ocamlformat": "0.18.0",
"@opam/ocaml-lsp-server": "^1.8.2"
},
"esy": {
"build": "dune build -p binaryen",
"buildEnv": {
"DUNE_BUILD_DIR": "#{self.target_dir}",
"PATH": "#{os == 'windows' ? '/usr/x86_64-w64-mingw32/sys-root/mingw/bin' : '' : $PATH }"
},
"exportedEnv": {
"PATH": {
"val": "#{os == 'windows' ? '/usr/x86_64-w64-mingw32/sys-root/mingw/bin' : '' : $PATH }",
"scope": "global"
}
}
},
"scripts": {
"test": "esy b dune runtest",
"format": "dune build @fmt --auto-promote"
},
"installConfig": {
"pnp": false
},
"keywords": [
"binaryen",
"ocaml"
]
}