(defproject mw-engine "0.1.6-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.3"] [org.clojure/clojurescript "1.10.896" :scope "provided"] [org.clojure/math.combinatorics "0.1.6"] [org.clojure/tools.trace "0.7.11"] [org.clojure/tools.namespace "1.1.1"] [com.taoensso/timbre "5.1.2"] [fivetonine/collage "0.3.0"] [hiccup "1.0.5"] [net.mikera/imagez "0.12.0"]] :description "Cellular automaton world builder." :jvm-opts ["-Xmx4g"] :license {:name "GNU General Public License v2" :url "http://www.gnu.org/licenses/gpl-2.0.html"} :min-lein-version "2.0.0" :plugins [[lein-cljsbuild "1.1.7"] [lein-kibit "0.1.2"] [lein-marginalia "0.7.1"]] :resource-paths ["resources" "target/cljsbuild"] :source-paths ["src/clj" "src/cljs" "src/cljc"] :url "http://www.journeyman.cc/microworld/" )