-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproject.clj
15 lines (15 loc) · 853 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject asset-minifier "0.2.7"
:description "a library to minify CSS and Js sources"
:url "https://github.com/yogthos/asset-minifier"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]
[clojure-future-spec "1.9.0"]
[org.clojure/test.check "0.9.0"]
[com.yahoo.platform.yui/yuicompressor "2.4.8" :exclusions [rhino/js]]
[com.google.javascript/closure-compiler "v20160208"]
[clj-html-compressor "0.1.1"]
[commons-io "2.6"]]
:profiles {:dev {:dependencies [[pjstadig/humane-test-output "0.9.0"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}})