-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
flowtype.opam
50 lines (48 loc) · 1.71 KB
/
flowtype.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
opam-version: "2.0"
name: "flowtype"
version: "0.252.0"
maintainer: "[email protected]"
authors: "Flow Team <[email protected]>"
license: "MIT"
homepage: "https://flow.org"
doc: "https://flow.org/en/docs/getting-started/"
bug-reports: "https://github.com/facebook/flow/issues"
depends: [
"ocaml" {>= "5.2.0"}
"base" {>= "v0.16.3"}
"base-unix"
"base-bytes"
"camlp-streams" {>= "5.0.1"}
"dtoa" {>= "0.3.2"}
"fileutils" {>= "0.6.4"}
"flow_parser" {= "0.252.0"}
"inotify" {os = "linux" & >= "2.4.1"}
"ounit2" {with-test}
"lwt" {>= "5.7.0"}
"lwt_log" {>= "1.1.1"}
"lwt_ppx" {>= "2.1.0"}
"ppxlib" {>= "0.32.1"}
"ppx_expect" {>= "0.17.0"}
"ppx_expect" {>= "0.17.0"}
"ppx_let" {>= "0.14.0"}
"ppx_deriving" {build}
"ppx_gen_rec" {build}
"visitors" {build}
"wtf8"
]
build: ["dune" "build" "-p" name "-j" jobs]
depexts: ["linux-headers"] {os-distribution = "alpine"}
dev-repo: "git+https://github.com/facebook/flow.git"
synopsis: "Flow is a static typechecker for JavaScript"
description: """
To find out more about Flow, check out <https://flow.org>.
Flow adds static typing to JavaScript to improve developer productivity and
code quality. In particular, static typing offers benefits like early error
checking, which helps you avoid certain kinds of runtime failures, and code
intelligence, which aids code maintenance, navigation, transformation, and
optimization.
We have designed Flow so developers can reap its benefits without losing the
"feel" of coding in JavaScript. Flow adds minimal compile-time overhead, as it
does all its work proactively in the background. And Flow does not force you to
change how you code -- it performs sophisticated program analysis to work with
the idioms you already know and love."""