this repo has no description
1opam-version: "2.0"
2maintainer: "flow@fb.com"
3authors: ["Flow Team <flow@fb.com>"]
4homepage: "https://github.com/facebook/flow/tree/master/src/parser"
5bug-reports: "https://github.com/facebook/flow/issues"
6license: "MIT"
7
8build: [ make "-C" "src/parser" "build-parser" ]
9install: [ make "-C" "src/parser" "ocamlfind-install"]
10depends: [
11 "base" {>= "v0.14.1"}
12 "core_kernel" {>= "v0.14.1"}
13 "dtoa" {>= "0.3.2"}
14 "ocaml" {>= "4.10.2" & < "4.13~"}
15 "ocamlbuild" {build}
16 "ocamlfind" {build}
17 "ppx_deriving" {build}
18 "ppx_gen_rec" {build}
19 "sedlex" {>= "2.3"}
20 "visitors" {build}
21 "wtf8"
22]
23dev-repo: "git+https://github.com/facebook/flow.git"
24synopsis: "The Flow parser is a JavaScript parser written in OCaml"
25description: """
26It 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.
27
28To find out more about Flow, check out <https://flow.org>."""
29url {
30 src: "https://github.com/facebook/flow/archive/refs/tags/v0.159.0.tar.gz"
31 checksum: [
32 "sha256=0b82c6a406513e7b10409a1d25817f75519802d49e243e82447a82985fdf009f"
33 "md5=824010f5b4ac764a52d830890012aff2"
34 ]
35}