forked from facebook/flow
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflow_parser.opam
More file actions
25 lines (23 loc) · 812 Bytes
/
flow_parser.opam
File metadata and controls
25 lines (23 loc) · 812 Bytes
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
opam-version: "2.0"
name: "flow_parser"
version: "0.228.0"
maintainer: "flow@fb.com"
authors: ["Flow Team <flow@fb.com>"]
homepage: "https://github.com/facebook/flow/tree/master/src/parser"
bug-reports: "https://github.com/facebook/flow/issues"
license: "MIT"
build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"ocaml" {>= "4.14.0"}
"dune" {>= "3.0"}
"base" {>= "v0.14.1"}
"ppxlib" {= "0.35.0"}
"ppx_deriving" {build}
"ppx_gen_rec" {build}
"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>."""