forked from dgrnbrg/spyscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
39 lines (30 loc) · 1.2 KB
/
Copy pathproject.clj
File metadata and controls
39 lines (30 loc) · 1.2 KB
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
(defproject waffletower/spyscope "0.1.7"
:description "Trace-oriented debugging tools for Clojure(Script). Forked from http://github.com/dgrnbrg/spyscope"
: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.10.1"]
[org.clojure/clojurescript "1.10.764"]
[clj-time "0.15.2"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[net.cgrand/macrovich "0.2.1"]
[mvxcvi/puget "1.3.1"]
[fipp "0.6.23"]]
: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}}]})