re-frame/project.clj

41 lines
1.8 KiB
Clojure
Raw Normal View History

(defproject re-frame "0.8.0-SNAPSHOT"
2015-05-19 05:04:24 +00:00
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Reagent."
2014-12-08 03:48:59 +00:00
:url "https://github.com/Day8/re-frame.git"
2015-02-25 21:26:08 +00:00
:license {:name "MIT"}
2016-06-14 12:46:38 +00:00
:dependencies [[org.clojure/clojure "1.8.0"]
2016-06-11 12:21:29 +00:00
[org.clojure/clojurescript "1.9.36"]
[reagent "0.6.0-rc"]]
:profiles {:debug {:debug true}
2016-06-22 00:54:41 +00:00
:dev {:dependencies [[karma-reporter "0.3.0"]
[binaryage/devtools "0.7.0"]]
2016-06-14 12:46:38 +00:00
:plugins [[lein-cljsbuild "1.1.3"]
[lein-npm "0.6.1"]
2016-06-14 12:46:38 +00:00
[lein-figwheel "0.5.4-2"]]}}
2015-02-11 01:22:37 +00:00
:clean-targets [:target-path
2016-05-04 23:36:47 +00:00
"run/compiled"]
2014-12-08 03:48:59 +00:00
:resource-paths ["run/resources"]
:jvm-opts ["-Xmx1g" "-XX:+UseConcMarkSweepGC"]
2014-12-08 03:48:59 +00:00
:source-paths ["src"]
:test-paths ["test"]
2015-07-27 04:25:09 +00:00
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
2015-04-15 12:34:36 +00:00
2016-06-24 05:21:26 +00:00
:npm {:dependencies [[karma "1.0.0"]
[karma-cljs-test "0.1.0"]
[karma-chrome-launcher "0.2.0"]
[karma-junit-reporter "0.3.8"]]}
:cljsbuild {:builds [{:id "test"
:source-paths ["test" "src"]
:compiler {:output-to "run/compiled/test.js"
:source-map "run/compiled/test.js.map"
:output-dir "run/compiled/test"
2016-06-22 00:54:41 +00:00
:optimizations :whitespace
:pretty-print true}}]}
:aliases {"auto" ["do" "clean," "cljsbuild" "auto" "test,"]
"once" ["do" "clean," "cljsbuild" "once" "test,"] })