forked from dgrnbrg/spyscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
41 lines (30 loc) · 1.18 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
(defproject spyscope "0.1.7-SNAPSHOT"
:description "Trace-oriented debugging tools for Clojure(Script)"
:url "http://github.com/dgrnbrg/spyscope"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["releases" :clojars]]
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238"]
[clj-time "0.14.3"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[net.cgrand/macrovich "0.2.1"]
[mvxcvi/puget "1.0.2" :exclusions [brandonbloom/fipp]]
[bigml/fipp "0.6.8"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10" :exclusions [org.clojure/clojurescript]]]
:eval-in-leiningen true
:profiles
{:test {:dependencies [[lein-doo "0.1.10"]]}}
:doo {:build "test"
:source-paths ["src" "test"]
:alias {:default [:chrome-headless]}}
:cljsbuild
{:builds
[{:id "test"
:source-paths ["src" "test"]
:compiler
{:output-dir "target/cljs/out"
:output-to "target/cljs/tests.js"
:main spyscope.test-runner
:optimizations :whitespace}}]})