re-frame/project.clj

44 lines
2.2 KiB
Clojure
Raw Normal View History

2015-05-03 19:04:50 +10:00
(defproject re-frame "0.4.0"
2015-05-19 15:04:24 +10:00
:description "A Clojurescript MVC-like Framework For Writing SPAs Using Reagent."
2014-12-08 14:48:59 +11:00
:url "https://github.com/Day8/re-frame.git"
2015-02-26 08:26:08 +11:00
:license {:name "MIT"}
2014-12-08 14:48:59 +11:00
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-3211"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
2015-03-13 12:30:15 +11:00
[reagent "0.5.0"]]
2015-03-04 17:12:54 +13:00
2014-12-08 14:48:59 +11:00
:profiles {:debug {:debug true}
:dev {:dependencies [[spellhouse/clairvoyant "0.0-48-gf5e59d3"]]
2015-04-22 00:18:31 +10:00
:plugins [[lein-cljsbuild "1.0.5"]
2015-03-04 17:12:54 +13:00
[com.cemerick/clojurescript.test "0.3.3"]]}}
2015-02-11 12:22:37 +11:00
:clean-targets [:target-path
"run/compiled/demo"]
2015-03-04 17:12:54 +13:00
2014-12-08 14:48:59 +11:00
:resource-paths ["run/resources"]
:jvm-opts ["-Xmx1g" "-XX:+UseConcMarkSweepGC"] ;;
2014-12-08 14:48:59 +11:00
:source-paths ["src"]
:test-paths ["test"]
2015-04-15 22:34:36 +10:00
2015-03-04 17:12:54 +13:00
:cljsbuild {:builds [{:id "test" ;; currently bogus, there is no demo or tests
:source-paths ["test"]
:compiler {:output-to "run/compiled/test.js"
:source-map "run/compiled/test.js.map"
:output-dir "run/compiled/test"
:optimizations :simple
:pretty-print true}}]
:test-commands {"rhino" ["rhino" "-opt" "-1" :rhino-runner
2015-03-11 12:53:34 +13:00
"run/compiled/test.js"]
"slimer" ["xvfb-run" "-a" "slimerjs" :runner
2015-03-11 16:19:42 +13:00
"run/compiled/test.js"]
"phantom" ["phantomjs" ; doesn't work with phantomjs < 2.0.0
:runner "run/compiled/test.js"]}}
2015-03-04 17:12:54 +13:00
2014-12-08 14:48:59 +11:00
:aliases {"auto" ["do" "clean," "cljsbuild" "clean," "cljsbuild" "auto" "demo,"]
"once" ["do" "clean," "cljsbuild" "clean," "cljsbuild" "once" "demo,"]
2015-03-11 13:09:14 +13:00
"test-rhino" ["do" "clean," "cljsbuild" "once," "cljsbuild" "test" "rhino"]
"test-slimer" ["do" "clean," "cljsbuild" "once," "cljsbuild" "test" "slimer"] })