forked from facebook/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_parser.opam
26 lines (24 loc) · 871 Bytes
/
flow_parser.opam
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
opam-version: "2.0"
name: "flow_parser"
version: "0.171.0"
maintainer: "[email protected]"
authors: ["Flow Team <[email protected]>"]
homepage: "https://github.com/facebook/flow/tree/master/src/parser"
bug-reports: "https://github.com/facebook/flow/issues"
license: "MIT"
build: [ make "-C" "src/parser" "build-parser" ]
install: [ make "-C" "src/parser" "ocamlfind-install"]
depends: [
"ocaml" {>= "4.10.2"}
"ocamlfind" {build}
"ocamlbuild" {build}
"ppx_deriving" {build}
"ppx_gen_rec" {build}
"sedlex" {>= "2.3"}
"wtf8"
]
dev-repo: "git+https://github.com/facebook/flow.git"
synopsis: "The Flow parser is a JavaScript parser written in OCaml"
description: """
It 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.
To find out more about Flow, check out <https://flow.org>."""