-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
20 lines (18 loc) · 894 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject keenest-rube "0.1.0-alpha0"
:description "The state of a Kubernetes cluster, abstracted as a value in a Clojure atom."
:url "https://github.com/blak3mill3r/keenest-rube"
:license {:name "MIT"
:url "https://github.com/blak3mill3r/keenest-rube/blob/master/LICENSE"}
:dependencies [[org.clojure/clojure "1.9.0-alpha17"]
[org.clojure/core.async "0.3.442"]
[org.clojure/data.json "0.2.6"]
[aleph "0.4.4-alpha4"]
[funcool/lentes "1.2.0"]
[com.rpl/specter "1.0.4"]
[org.clojure/core.match "0.3.0-alpha5"]]
:profiles {:dev
{:dependencies [[org.clojure/tools.namespace "0.2.11"]
[mount "0.1.11"]]
:repl-options {:init (println (char 7))}
:plugins []
:source-paths ["dev" "src"]}})