forked from wilkerlucio/spec-coerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
25 lines (19 loc) · 1.01 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
(defproject spec-coerce "1.0.0-alpha7-SNAPSHOT"
:description "Coerce from specs"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-doo "0.1.7"]]
:dependencies [[com.wsscode/spec-inspec "1.0.0-alpha2"]]
:source-paths ["src"]
:test-paths ["test"]
:cljsbuild {:builds [{:id "test-build"
:source-paths ["src" "test"]
:compiler {:output-to "out/testable.js"
:main 'spec-coerce.cljs-test-runner
:target :nodejs
:optimizations :none}}]}
:profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"]
[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.9.671"]]}
:test {:dependencies [[org.clojure/clojure "1.9.0"]]}})