-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
18 lines (18 loc) · 1.02 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject tailrecursion/cljson "1.0.7"
:description "Fast data exchange format for between Clojure and ClojureScript"
:url "https://github.com/tailrecursion/cljson"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[cheshire "5.2.0" :exclusions [org.clojure/clojure]]]
:source-paths ["src/clj"]
:repl-options {:init-ns tailrecursion.cljson}
:plugins [[lein-cljsbuild "0.3.4"]]
:profiles {:testz {:dependencies [[org.clojure/clojurescript "0.0-1934"]]}
:deployz {:source-paths ["src/clj" "src/cljs"]}
:test {:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/data.generators "0.1.2"]
[org.clojure/tools.reader "0.7.9"]]}}
:cljsbuild {:test-commands {"unit" ["test/run.sh"]}
:builds [{:source-paths ["src/cljs"]
:compiler {:output-to "test/test.js"
:optimizations :advanced}}]})