-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathproject.clj
28 lines (23 loc) · 1.15 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
;;;; Copyright © 2015-2017 José Pablo Fernández Silva
(defproject com.pupeno/free-form "0.6.0"
:description "Library for building forms with Reagent or Re-frame."
:url "https://github.com/pupeno/free-form"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:lein-release {:deploy-via :clojars}
:signing {:gpg-key "71E6E789"}
:scm {:name "git"
:url "https://github.com/pupeno/free-form"}
:dependencies [[org.clojure/clojurescript "1.9.293" :scope "provided"]
[org.clojure/clojure "1.8.0" :scope "provided"]
[reagent "0.6.0" :scope "provided"]
[re-frame "0.8.0" :scope "provided"]
[doo "0.1.7" :scope "provided"]]
:plugins [[lein-cljsbuild "1.1.4"]
[lein-doo "0.1.7"]]
:source-paths ["src/cljs"]
:cljsbuild {:builds {:test {:source-paths ["src/cljs" "test/cljs"]
:compiler {:main free-form.runner
:output-to "out/free_form.js"
:optimizations :none}}}}
:doo {:build "test"})