this repo has no description
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Speed - go fast by writing test first"
4description: """
5Speed is a test framework encouraging a fast feedback loop by writing tests
6first. This is inspired by other tools bourn out of the BDD philosophy. It
7draws inspiration from the JavaScript libraries, mocha/jasmine/jest, as well as
8the Ruby library RSpec"""
9maintainer: ["Peter Strøiman"]
10authors: ["Peter Strøiman"]
11license: "MIT"
12tags: ["tdd" "testing" "unit-testing" "bdd"]
13homepage: "https://github.com/stroiman/opam-speed"
14bug-reports: "https://github.com/stroiman/opam-speed/issues"
15depends: [
16 "ocaml" {>= "5"}
17 "dune" {>= "3.15"}
18 "ocolor"
19 "ppxlib"
20 "base"
21 "lwt"
22 "lwt_ppx"
23 "ppx_jane"
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/stroiman/opam-speed.git"
41url {
42 src:
43 "https://github.com/stroiman/opam-speed/archive/refs/tags/0.2.0.tar.gz"
44 checksum: [
45 "md5=a455964b16c60eec12b8cb258b09fa2b"
46 "sha512=e60ac7dc9038ab3e2d2c5cd84729c9e04b722de52329b1de61dd15a1d274e1dc71dc11e0f0d033e6602ae0cee9e8d7baabd19f3918aa3c61e63c14ef0c90e606"
47 ]
48}