-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
19 lines (19 loc) · 1.11 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.2tothe8th/dominator "0.4.0"
:description "Virtual-Dom in ClojureScript."
:url "https://github.com/dubiousdavid/dominator"
:dependencies [[org.clojure/clojure "1.7.0-beta2"]
[org.clojure/clojurescript "0.0-3178"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[stch-library/html "0.1.2" :exclusions [org.clojure/clojurescript]]
[jamesmacaulay/zelkova "0.4.0" :exclusions [org.clojure/clojure
org.clojure/clojurescript
org.clojure/core.async]]]
:node-dependencies [[source-map-support "0.2.8"]]
:plugins [[lein-cljsbuild "1.0.5"]
[lein-npm "0.4.0"]]
:source-paths ["src" "target/classes"]
:resource-paths ["externs"]
:profiles {:doc {:dependencies [[org.clojure/clojurescript "0.0-2985"]]
:codox {:src-dir-uri "https://github.com/dubiousdavid/dominator/blob/master/"
:src-linenum-anchor-prefix "L"
:language :clojurescript}}})