-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (20 loc) · 783 Bytes
/
project.clj
File metadata and controls
20 lines (20 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject monoid/rough-cljs "1.0.0"
:dependencies [[thheller/shadow-cljs "2.8.94"]
[binaryage/devtools "1.0.0"]
[reagent "0.10.0"]
[org.clojure/spec.alpha "0.2.187"]
]
:description "A simple data-driven reagent wrapper for RoughJS. Build diagrams with a hand-drawn look"
:url "https://rough-cljs.netlify.com/"
:license {:name "MIT License"}
:repositories
{"clojars" {:url "https://clojars.org/repo"
:sign-releases false}}
:plugins []
:source-paths ["src/main"]
:test-paths ["src/test"]
:jar-exclusions [#"example\.cljs"]
:profiles {
:dev {:dependencies [[org.clojure/test.check "1.0.0"]]}
:test {:dependencies [[org.clojure/test.check "1.0.0"]]}}
)