this repo has no description
1opam-version: "2.0" 2maintainer: "flow@fb.com" 3 4# note that the opam packages is not officially maintained by the upstream 5# see https://github.com/facebook/flow/pull/9121 for upstream discussion 6authors: ["Flow Team <flow@fb.com>"] 7homepage: "https://github.com/facebook/flow/tree/master/src/parser" 8bug-reports: "https://github.com/facebook/flow/issues" 9license: "MIT" 10 11build: ["dune" "build" "-p" name "-j" jobs] 12depends: [ 13 "ocaml" {>= "4.14.0" & < "5.2"} 14 "dune" {>= "3.2"} 15 "base" {>= "v0.14.1"} 16 "ppxlib" {>= "0.26.0" & < "0.36.0"} 17 "ppx_deriving" {build} 18 "ppx_gen_rec" {build} 19 "wtf8" 20] 21dev-repo: "git+https://github.com/facebook/flow.git" 22synopsis: "The Flow parser is a JavaScript parser written in OCaml" 23description: """ 24It produces an AST that conforms to ESTree. The Flow Parser can be compiled to native code or can be compiled to JavaScript using js_of_ocaml. 25 26To find out more about Flow, check out <https://flow.org>.""" 27 28url { 29 src: "https://github.com/facebook/flow/archive/refs/tags/v0.229.1.tar.gz" 30 checksum: [ 31 "sha256=1d45d9e8da6f2409e6544068d15ce200e3e9c9d7187219b7bbbe144944c97ae2" 32 "md5=8a71ada3866d6c3a9f3825a48965501b" 33 ] 34}