-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
26 lines (26 loc) · 1.43 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
(defproject tenforty "0.1.0-SNAPSHOT"
:description "Tools for analyzing U.S. taxes"
:url "https://github.com/divergentdave/tenforty"
:license {:name "GNU GPL v2"
:url "https://www.gnu.org/licenses/gpl-2.0.en.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.293"]
[org.clojure/math.numeric-tower "0.0.4"]]
:plugins [[lein-cljsbuild "1.1.5"]]
:cljsbuild {:builds {:dev {:source-paths ["src"]
:compiler {:output-to "out/cljs.js"
:output-dir "out"
:optimizations :whitespace
:source-map "out/cljs.js.map"
:pretty-print true}}
:test {:source-paths ["src" "test"]
:compiler {:output-to "resources/test/compiled.js"
:optimizations :whitespace
:pretty-print true}}}
:test-commands {"unit" ["phantomjs"
"resources/test/test.js"
"resources/test/test.html"]}}
:clean-targets ^{:protect false} ["out"
"resources/test/compiled.js"
:target-path]
:profiles {:dev {:plugins [[lein-cljfmt "0.5.6"]]}})