-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
49 lines (40 loc) · 1.48 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
42
43
44
45
46
47
48
49
(defproject phrase "0.4-SNAPSHOT"
:description "Clojure(Script) library for phrasing spec problems."
:url "https://github.com/alexanderkiel/phrase"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.6.0"
:pedantic? :abort
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10" :exclusions [org.clojure/clojure]]
[lein-tach "1.0.0"]]
:dependencies
[[org.clojure/spec.alpha "0.2.176"]]
:profiles
{:dev
{:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.439"]
[com.google.guava/guava "25.1-jre"]]}
:clj-1.9
{:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]]}}
:source-paths ["src"]
:test-paths ["test/cljc"]
:cljsbuild
{:builds
{:test
{:source-paths ["src" "test/cljc" "test/cljs"]
:compiler
{:output-to "out/testable.js"
:main phrase.doo-runner
:optimizations :simple
:process-shim false}}}}
:tach
{:test-runner-ns phrase.tach-runner}
:clean-targets ["target" "out"]
:aliases
{"cljs-nashorn-tests" ["doo" "nashorn" "test" "once"]
"cljs-phantom-tests" ["doo" "phantom" "test" "once"]
"cljs-planck-tests" ["tach" "planck" "test"]
"all-tests" ["do" "test," "cljs-nashorn-tests," "cljs-phantom-tests," "cljs-planck-tests"]
"lint" ["eastwood" "{:linters [:all] :exclude-linters [:keyword-typos]}"]})