-
Notifications
You must be signed in to change notification settings - Fork 5
/
deps.edn
35 lines (29 loc) · 1.51 KB
/
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
28
29
30
31
32
33
34
35
{:paths ["src"]
:mvn/repos {"github-kepler"
{:url "https://maven.pkg.github.com/kepler16/gx.cljc"}}
:deps
{funcool/promesa {:mvn/version "10.0.594"}
metosin/malli {:mvn/version "0.10.0"}}
:aliases
{:dev {:extra-paths ["test"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.19.5"}
lambdaisland/kaocha {:mvn/version "1.70.1086"}
;; pipe other logging facades to slf4j
org.slf4j/jul-to-slf4j {:mvn/version "1.7.36"}
org.slf4j/jcl-over-slf4j {:mvn/version "1.7.36"}
org.slf4j/log4j-over-slf4j {:mvn/version "1.7.36"}
org.slf4j/osgi-over-slf4j {:mvn/version "1.7.36"}
ch.qos.logback/logback-classic {:mvn/version "1.2.3"}
org.clojure/tools.logging {:mvn/version "1.2.4"}}
:jvm-opts ["-Dclojure.tools.logging.factory=clojure.tools.logging.impl/slf4j-factory"]}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:kaocha {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.70.1086"}}
:main-opts ["-m" "kaocha.runner"]}
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.8.0" :git/sha "9bd8b8a"}}}
:shadow-cljs {:main-opts ["-m" "shadow.cljs.devtools.cli"]}}}