-
Notifications
You must be signed in to change notification settings - Fork 4
/
JS_Parser.opam
35 lines (33 loc) · 1.18 KB
/
JS_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
27
28
29
30
31
32
33
34
35
opam-version: "2.0"
name: "JS_Parser"
version: "dev"
maintainer: "Sacha-Elie Ayoun <[email protected]>"
authors: [
"Daiva Naudziuniene <[email protected]>"
"Conrad Watt <[email protected]>"
"Thomas Wood <[email protected]>"
"Petar Maksimovic <[email protected]>"
"Sacha-Elie Ayoun <[email protected]>"
]
homepage: "https://github.com/resource-reasoning/JS_Parser"
bug-reports: "https://github.com/resource-reasoning/JS_Parser/issues"
license: "TBC"
dev-repo: "git+https://github.com/resource-reasoning/JS_Parser.git"
libraries: ["JS_Parser"]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest"] { with-test }
["dune" "build" "-p" name "@doc"]
]
depends: [
"dune" { build }
"ocaml" { >="4.04" }
"flow_parser" #the flow-parser on opam is dead.
"ounit" { with-test }
"odoc" { with-doc }
]
decription: "Parser for EcmaScript 5 that allows to include JS Logic annotations, based on Flow_parser"
synopsis: """
Parser for EcmaScript 5 that allows to include JS Logic annotations, based on Flow_parser
This package was originaly using google clojure, and then esprima, and is now completely written in OCaml.
"""