forked from lynaghk/c2
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
23 lines (18 loc) · 734 Bytes
/
Copy pathproject.clj
File metadata and controls
23 lines (18 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defproject b1 "0.3.4-SNAPSHOT"
:description "Simple data visualization in Clojure(Script)."
:url "https://github.com/henrygarner/b1"
:license {:name "BSD"
:url "http://www.opensource.org/licenses/BSD-3-Clause"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308" :scope "provided"]
[clj-iterate "0.96"]
[org.clojure/core.match "0.3.0-alpha4"]]
:plugins [[lein-cljsbuild "1.0.5"]
[lein-midje "3.1.3"]]
:profile {:dev {:dependencies [[midje "1.6.3"]]}}
:source-paths ["src"]
:cljsbuild
{:builds
[{:source-paths ["src"]
:compiler {:output-to "target/main.js"
:pretty-print true}}]})