-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 794 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject tailrecursion/cljs-priority-map "1.2.1"
:description "ClojureScript priority map implementation based on clojure.data.priority-map"
:url "https://github.com/tailrecursion/cljs-priority-map"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]]
:source-paths ["src/cljs"]
:plugins [[lein-cljsbuild "1.1.1"]]
:cljsbuild {:builds {:test
{:source-paths ["test"]
:compiler {:output-to "public/test.js"
:optimizations :advanced}
:jar false}}
:test-commands {"phantomjs" ["phantomjs" "public/test.js"]}})