forked from r0man/cljs-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 1.17 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject cljs-http "0.1.29-SNAPSHOT"
:description "A ClojureScript HTTP library."
:url "http://github.com/r0man/cljs-http"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[noencore "0.1.18"]
[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2850"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[com.cognitect/transit-cljs "0.8.205"]]
:profiles {:dev {:plugins [[com.cemerick/austin "0.1.6"]]}}
:plugins [[com.cemerick/clojurescript.test "0.3.0"]
[lein-cljsbuild "1.0.3"]]
:aliases {"test-ancient" ["test"]}
:hooks [leiningen.cljsbuild]
:min-lein-version "2.0.0"
:deploy-repositories [["releases" :clojars]]
:cljsbuild {:builds [{:compiler {:output-to "target/testable.js"
:optimizations :advanced
:pretty-print true}
:source-paths ["test"]}]
:test-commands {"phantom" ["phantomjs" :runner "target/testable.js"]}}
:repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"})