forked from MastodonC/kixi.stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
22 lines (22 loc) · 985 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject kixi/stats "0.5.2"
:description "A library of statistical distribution sampling and transducing functions"
:url "https://github.com/mastodonc/kixi.stats"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[redux "0.1.3"]
[org.clojure/test.check "0.9.0"]
[org.clojure/math.combinatorics "0.1.4"]
[com.tdunning/t-digest "3.2"]]
:profiles {:dev
{:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.439"]]
:plugins [[lein-cljsbuild "1.1.3"]
[lein-doo "0.1.11"]]}}
:cljsbuild
{:builds
{:test {:source-paths ["src" "test"]
:compiler {:output-to "target/main.js"
:main kixi.stats.test-runner
:optimizations :whitespace}}}}
:aliases
{"test-cljs" ["doo" "phantom" "test" "once"]})