-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathproject.clj
46 lines (45 loc) · 2.44 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
(defproject malabarba/lazy-map "1.3"
:description "Create lazy maps from data or from java objects. Entry
points are the `core/lazy-map` and the `iop/extend-lazy-map` macros."
:url "https://github.com/Malabarba/lazy-map-clojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[codox "0.8.12"]]
:dependencies [[org.clojure/clojure "1.7.0"]]
:scm {:name "git"
:url "https://github.com/Malabarba/lazy-map-clojure"}
:codox {:defaults {:doc/format :markdown}
:src-dir-uri "https://github.com/Malabarba/lazy-map-clojure/blob/master/"
:src-linenum-anchor-prefix "L"}
:profiles {:test {:test-paths ["test/cljc"]
:global-vars {*warn-on-reflection* true}}
:test-cljs {:dependencies [[org.clojure/clojurescript "1.7.170"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-doo "0.1.6-rc.1"]]}
:coveralls {:plugins [[lein-cloverage "1.0.2"]
[lein-shell "0.4.0"]]
:aliases {"coveralls" ["do" "cloverage" "--coveralls,"
"shell" "curl" "-F"
"json_file=@target/coverage/coveralls.json"
"https://coveralls.io/api/v1/jobs"]}}
:cljfmt {:plugins [[lein-cljfmt "0.3.0"]]
:cljfmt {:indents {as-> [[:inner 0]]}}}
:eastwood {:plugins [[jonase/eastwood "0.2.1"]]
:eastwood {:config-files ["eastwood.clj"]}}}
:cljsbuild
{:builds
[{:id "main"
:source-paths ["src"]
;; :notify-command ["terminal-notifier" "-title" "cljsbuild" "-message"]
:compiler {:output-to "resources/public/js/testable.js"
:main lazy-map.test-runner
:optimizations :advanced}}
{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/testable.js"
:main lazy-map.test-runner
:optimizations :none}}]}
:aliases {"clj-test" ["with-profile" "+test" "test"]
"cljs-test" ["with-profile" "+test-cljs" "do"
["clean"]
["doo" "phantom" "test" "once"]]})