this repo has no description
1opam-version: "2.0" 2synopsis: "Easy OCaml bindings for JavaScript libraries" 3description: """ 4 5gen_js_api aims at simplifying the creation of OCaml bindings for 6JavaScript libraries. Authors of bindings write OCaml signatures for 7JavaScript libraries and the tool generates the actual binding code 8with a combination of implicit conventions and explicit annotations. 9 10gen_js_api is to be used with the js_of_ocaml compiler. 11 """ 12maintainer: ["Alain Frisch <alain.frisch@lexifi.com>"] 13authors: [ 14 "Alain Frisch <alain.frisch@lexifi.com>" 15 "Sebastien Briais <sebastien.briais@lexifi.com>" 16] 17license: "MIT" 18homepage: "https://github.com/LexiFi/gen_js_api" 19bug-reports: "https://github.com/LexiFi/gen_js_api/issues" 20depends: [ 21 "dune" {>= "2.7"} 22 "ocaml" {>= "4.08"} 23 "ppxlib" {>= "0.22"} 24 "ppxlib" {with-test & < "0.26.0"} 25 "js_of_ocaml-compiler" {with-test} 26 "conf-npm" {with-test} 27 "ojs" 28 "odoc" {with-doc} 29] 30conflicts: [ 31 "js_of_ocaml-compiler" {< "3.0.0"} 32] 33build: [ 34 ["dune" "subst"] {dev} 35 [ 36 "dune" 37 "build" 38 "-p" 39 name 40 "-j" 41 jobs 42 "@install" 43 "@runtest" {with-test} 44 "@doc" {with-doc} 45 ] 46] 47dev-repo: "git+https://github.com/LexiFi/gen_js_api.git" 48url { 49 src: "https://github.com/LexiFi/gen_js_api/archive/v1.0.9.tar.gz" 50 checksum: [ 51 "md5=4cc996401ecfd63b24edca6b75ebef56" 52 "sha512=ed066c0e18d3a5412536f7ded18bb2056c1e9c1a3d1dbd4e914baa730fc7bbc286d93ffe2db2bb4db2e8961e79a4e1fceee9bb301e7984179e3442b762bd01f5" 53 ] 54}