forked from circleci/bond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
19 lines (19 loc) · 1.09 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject circleci/bond "0.4.0"
:description "Spying library for testing"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies []
:plugins [[lein-test-out "0.3.1" :exclusions [org.clojure/clojure]]
[lein-cljsbuild "1.1.3"]
[lein-cloverage "1.0.9"]]
:cljsbuild {:builds [{:source-paths ["src" "test"]
:compiler {:output-dir "resources/public/js/out"
:output-to "resources/public/js/test-bond.js"
:optimizations :whitespace
:pretty-print true}}]
:test-commands {"unit" ["node_modules/phantomjs-prebuilt/bin/phantomjs"
"resources/test/phantom/runner.js"
"resources/test/test.html"]}}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.228"]
[com.cemerick/clojurescript.test "0.3.0"]]}})