-
Notifications
You must be signed in to change notification settings - Fork 11
/
deps.edn
28 lines (26 loc) · 1.67 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
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
clj-commons/clj-yaml {:mvn/version "1.0.26"}
com.vladsch.flexmark/flexmark {:mvn/version "0.64.8"}
com.vladsch.flexmark/flexmark-ext-tables {:mvn/version "0.64.8"}
com.vladsch.flexmark/flexmark-ext-footnotes {:mvn/version "0.64.8"}
com.vladsch.flexmark/flexmark-ext-gfm-strikethrough {:mvn/version "0.64.8"}
com.vladsch.flexmark/flexmark-ext-gfm-tasklist {:mvn/version "0.64.8"}
com.vladsch.flexmark/flexmark-test-util {:mvn/version "0.64.8"
:exclusions [junit/junit]}
com.vladsch.flexmark/flexmark-ext-gitlab {:mvn/version "0.64.8"}
com.vladsch.flexmark/flexmark-ext-toc {:mvn/version "0.64.8"}
org.clj-commons/hickory {:mvn/version "0.7.3"}
cljs-bean/cljs-bean {:mvn/version "1.9.0"}}
:aliases {:test-cljs {:extra-paths ["test"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.23.3"}}
:main-opts ["-m" "shadow.cljs.devtools.cli" "release" "test"]}
:test-clj {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}}
:main-opts ["-m" "kaocha.runner"]}
:build {:extra-paths ["build"]
:extra-deps {slipset/deps-deploy {:mvn/version "0.2.1"}
io.github.clojure/tools.build {:mvn/version "0.9.4"}}
:ns-default build}}}