-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
32 lines (28 loc) · 1.47 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(defproject com.bhauman/spell-spec "0.1.3-SNAPSHOT"
:description "Clojure Spec macros which verify that unspecified map keys are not misspellings of specified map keys."
:url "https://github.com/bhauman/spell-spec"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm { :name "git"
:url "https://github.com/bhauman/spell-spec"}
:dependencies [[org.clojure/clojure "1.9.0"]]
:clean-targets ^{:protect false} ["target"]
:profiles {:dev {:dependencies [[org.clojure/clojurescript "1.10.238"]
[org.clojure/test.check "0.9.0"]
[com.bhauman/figwheel-main "0.2.5-SNAPSHOT"]
[com.bhauman/cljs-test-display "0.1.0"]
[expound "0.8.4"]]
:source-paths ["src" "example"]
:resource-paths ["target"]}}
:aliases {"test-cljs" ["do" "clean" ["run" "-m" "figwheel.main" "-m" "spell-spec.runner"]]
"auto-test-cljs" ["do" "clean"
["run"
"-m"
"figwheel.main"
"-w" "src"
"-w" "test"
"-e" "(require 'spell-spec.runner)(spell-spec.runner/test-all)"
"-c"
"spell-spec.runner"
"-r"]]}
)