-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
33 lines (26 loc) · 1.23 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
(defproject steadyhash "0.2.1-SNAPSHOT"
:description "Stable Hashing implementations in Clojure[Script]"
:url "https://github.com/fotoetienne/steadyhash"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.5.2"
:jvm-opts ["-Xmx1g"]
:dependencies []
:profiles
{:dev {:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[org.clojure/test.check "0.9.0"]
[org.mozilla/rhino "1.7.7"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.6"]]}}
:aliases {"test-clj" ["test"]
"test-cljs" ["doo" "rhino" "test" "once"]
"test-all" ["do" "clean," "test-clj," "test-cljs"]
"deploy" ["do" "clean," "deploy" "clojars"]}
:jar-exclusions [#"\.swp|\.swo|\.DS_Store"]
:doo {:paths {:rhino "lein run -m org.mozilla.javascript.tools.shell.Main"}}
:cljsbuild {:builds
{:test {:source-paths ["src" "test"]
:compiler {:output-to "target/unit-test.js"
:main 'steadyhash.runner
:optimizations :whitespace}}}})