forked from leonoel/missionary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
27 lines (23 loc) · 999 Bytes
/
deps.edn
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
{:deps
{org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.60"}
org.reactivestreams/reactive-streams {:mvn/version "1.0.4"}
cloroutine/cloroutine {:mvn/version "11"}}
:paths ["src" "target/classes"]
:aliases
{:tck
{:extra-deps {org.reactivestreams/reactive-streams-tck {:mvn/version "1.0.4"}}}
:clj-test
{:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "028a6d41ac9ac5d5c405dfc38e4da6b4cc1255d5"}}
:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]}
:clj-test-watch {:extra-deps {lambdaisland/kaocha {:mvn/version "1.69.1069"}}
:extra-paths ["test"]
:exec-fn missionary.test-dev/run}
:cljs-test
{:extra-deps {olical/cljs-test-runner
{:mvn/version "3.8.0"}}
:extra-paths ["test" "cljs-test-runner-out/gen"]
:main-opts ["-m" "cljs-test-runner.main"]}}}