-
Notifications
You must be signed in to change notification settings - Fork 6
/
deps.edn
52 lines (46 loc) · 2.24 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{:paths ["src" "resources"]
:deps {applied-science/js-interop {:mvn/version "0.3.3"}
org.commonmark/commonmark {:mvn/version "0.23.0"}
org.commonmark/commonmark-ext-autolink {:mvn/version "0.23.0"}
org.commonmark/commonmark-ext-footnotes {:mvn/version "0.23.0"}
org.commonmark/commonmark-ext-task-list-items {:mvn/version "0.23.0"}
org.commonmark/commonmark-ext-gfm-tables {:mvn/version "0.23.0"}
org.commonmark/commonmark-ext-gfm-strikethrough {:mvn/version "0.23.0"}}
:aliases
{:nextjournal/clerk
{:extra-paths ["notebooks" "dev"]
:extra-deps {io.github.nextjournal/clerk {:git/sha "80b3e0832d08b75e13e3b862bd46660cb1c66d5c"
:exclusions [io.github.nextjournal/markdown]}}
:jvm-opts ["-Dclojure.main.report=stderr"
#_"-Dclerk.resource_manifest={\"/js/viewer.js\" \"js/viewer.js\"}"] ;;
:exec-fn nextjournal.clerk/build!
:exec-args {:git/url "https://github.com/nextjournal/markdown"
:paths ["README.md"
"CHANGELOG.md"
"notebooks/try.clj"
"notebooks/images.clj"
"notebooks/pandoc.clj"
"notebooks/parsing_extensibility.clj"
"notebooks/benchmarks.clj"
"notebooks/tight_lists.clj"]}}
:quiet
{:jvm-opts ["-Dpolyglot.engine.WarnInterpreterOnly=false"]}
:dev
{:extra-paths ["dev"]
:extra-deps {org.babashka/http-client {:mvn/version "0.3.11"}
org.clojure/data.json {:mvn/version "2.4.0"}
org.clojure/test.check {:mvn/version "1.1.1"}
org.graalvm.js/js {:mvn/version "21.3.2.1"}}}
:test
{:extra-paths ["test"]
:jvm-opts ["-Dclojure.main.report=stderr"]
:extra-deps {nubank/matcher-combinators {:mvn/version "3.8.3"}}
:exec-fn test-runner/run}
:shadow
{:main-opts ["-m" "shadow.cljs.devtools.cli"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.18.0"}}}
:build
{:ns-default build
:jvm-opts ["-Dclojure.main.report=stderr"]
:deps {io.github.clojure/tools.build {:git/tag "v0.10.3" :git/sha "15ead66"}
io.github.slipset/deps-deploy {:git/sha "b4359c5d67ca002d9ed0c4b41b710d7e5a82e3bf"}}}}}