-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathcatala-js.opam
More file actions
39 lines (39 loc) · 1.13 KB
/
catala-js.opam
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
opam-version: "2.0"
version: "1.1.0"
synopsis:
"Catala additional tools for javascript"
description: """
This package contains javascript-related Catala utilities:
- a js_of_ocaml version of the Catala interpreter that can be embedded in a web playground
- a wrapper for the ocaml runtime compiled with jsoo
- two plugins to generate javascript wrappers and json schemas to simplify usage of a jsoo-compiled catala program
"""
maintainer: "contact@catala-lang.org"
authors: [
"Vincent Botbol"
"Nicolas Chataing"
"Alain Delaët-Tixeuil"
"Louis Gesbert"
"Aymeric Fromherz"
"Denis Merigoux"
"Raphaël Monat"
"Romain Primet"
"Emile Rolley"
]
license: "Apache-2.0"
tags: [ "catala" "javascript" ]
homepage: "https://github.com/CatalaLang/catala"
bug-reports: "https://github.com/CatalaLang/catala/issues"
depends: [
"catala" {= _:version}
"zarith_stubs_js" {>= "v0.17.0"}
"js_of_ocaml" {>= "6.0"}
"js_of_ocaml-ppx" {>= "6.0"}
]
build: [
"dune" "build" "-p" name "-j" jobs "@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
build-env: [ CATALA_VERSION = "%{version}%" ]
dev-repo: "git+https://github.com/CatalaLang/catala"