forked from hexlet-codebattle/battle_asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
31 lines (31 loc) · 1.79 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
{:paths ["src" "test"]
:description "Hexlet Codebattle Asserts"
:url "http://battle.hexlet.io"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/tools.namespace {:mvn/version "1.4.4"}
org.clojure/data.json {:mvn/version "2.4.0"}
org.clojure/test.check {:mvn/version "1.1.1"}
helpshift/faker {:mvn/version "0.3.0"}
clj-commons/clj-yaml {:mvn/version "1.0.27"}
faker/faker {:mvn/version "0.3.2"}
kovacnica/clojure.network.ip {:mvn/version "0.1.3"}
dev.weavejester/cljfmt {:mvn/version "0.11.2"}
tvaughan/kibit-runner {:mvn/version "1.0.1"}
jonase/eastwood {:mvn/version "1.4.0"}}
:aliases {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
:main-opts ["-m" "kaocha.runner"]}
:generate-asserts {:main-opts ["-m" "battle-asserts.core"]}
:eastwood {:main-opts ["-m"
"eastwood.lint"
{:exclude-linters [:reflection]}]}
:kibit {:main-opts ["-m" "kibit-runner.cmdline"]}
:cljfmt-check {:main-opts ["-m" "cljfmt.main" "check"]}
:cljfmt-fix {:main-opts ["-m" "cljfmt.main" "fix"]}
:check-translations {:exec-fn battle-asserts.tasks/check-translations}
:check-tags {:exec-fn battle-asserts.tasks/check-tags}
:check-generators-and-solutions {:exec-fn battle-asserts.tasks/check-generators-and-solutions}
:collect-tags {:exec-fn battle-asserts.tasks/collect-tags}
:generate-template {:exec-fn battle-asserts.tasks/run-isssue-template-generator}
:collect-disabled {:exec-fn battle-asserts.tasks/collect-disabled}}}