-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
21 lines (18 loc) · 870 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject me.lomin/alive "0.5.0"
:description "A selector-based (à la CSS) templating library for Clojure and ClojureScript, inspired by enlive."
:url "https://github.com/lomin/alive"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.339"]
[com.rpl/specter "1.1.1"]
[hiccup "1.0.5"]
[hickory "0.7.1"]
[hawk "0.2.11"]]
:test-selectors {:default (constantly true)
:unit :unit
:focused :focused
:all (constantly true)}
:profiles {:dev {:resource-paths ["test-resources"]}
:test {:source-paths [".alive"]
:dependencies [[enlive "1.1.6"]]}})