-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
41 lines (34 loc) · 1.71 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
41
(defproject pinpointer "0.1.2-SNAPSHOT"
:description "Pinpointer is yet another spec error reporter based on a precise error analysis"
:url "https://github.com/athos/Pinpointer"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:test-paths ["test/cljc"]
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.9.946" :scope "provided"]
[clansi "1.0.0"]
[fipp "0.6.18"]
[spectrace "0.1.0"]]
:plugins [[lein-cloverage "1.0.9"]
[lein-cljsbuild "1.1.4"]
[lein-doo "0.1.8"]
[lein-eftest "0.3.1"]]
:cljsbuild {:builds [{:id "test"
:source-paths ["src" "test/cljc" "test/cljs"]
:compiler {:output-to "target/out/test.js"
:output-dir "target/out"
:main pinpointer.runner
:optimizations :none}}
{:id "node-test"
:source-paths ["src" "test/cljc" "test/cljs"]
:compiler {:output-to "target/node_out/test.js"
:output-dir "target/node_out"
:main pinpointer.runner
:optimizations :none
:target :nodejs}}]}
:eftest {:report eftest.report.pretty/report}
:profiles
{:dev {:dependencies [[org.clojure/test.check "0.10.0-alpha2"]]}}
:aliases {"test-all" ["do" ["test-clj"] ["test-cljs"]]
"test-clj" ["eftest"]
"test-cljs" ["doo" "node" "node-test" "once"]})