forked from avnu-labs/semgrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semgrep.opam
76 lines (75 loc) · 1.54 KB
/
semgrep.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.3.0"
synopsis:
"Like grep but for code: fast and syntax-aware semantic code pattern for many languages"
description: """
Semgrep is like grep but for searching patterns at the AST level.
For more information see https://semsgrep.dev
"""
maintainer: ["Yoann Padioleau <pad@semgrep.com>"]
authors: ["Yoann Padioleau <pad@semgrep.com>"]
license: "LGPL-2.1"
homepage: "https://semgrep.dev"
bug-reports: "https://github.com/returntocorp/semgrep/issues"
depends: [
"ocaml" {>= "4.12.0"}
"dune" {>= "2.7" & >= "2.7.0"}
"stdcompat"
"menhir" {= "20211128"}
"grain_dypgen"
"base"
"fpath"
"alcotest"
"ANSITerminal"
"easy_logging" {= "0.8.1"}
"easy_logging_yojson" {= "0.8.1"}
"logs"
"atdgen"
"yojson" {>= "2.0.0"}
"yaml"
"cmdliner"
"fmt"
"ppxlib"
"ppx_deriving"
"ppx_hash"
"ppx_inline_test"
"ppx_sexp_conv" {!= "v0.15.0" & != "v0.15.1"}
"re"
"pcre"
"ocamlgraph"
"parmap"
"uri"
"uuidm"
"http-lwt-client"
"terminal_size"
"lwt"
"lwt_ppx"
"lsp" {= "1.15.1-5.0"}
"visitors" {= "20210608"}
"js_of_ocaml" {= "5.1.1"}
"js_of_ocaml-compiler" {= "5.1.1"}
"js_of_ocaml-ppx" {= "5.1.1"}
"ctypes_stubs_js"
"integers_stubs_js"
"emile"
"bos"
"digestif" {>= "1.0.0"}
"notty"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/returntocorp/semgrep.git"