-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
47 lines (38 loc) · 2.09 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject prismatic/schema-generators "0.1.6-SNAPSHOT"
:description "Clojure(Script) library for data generation from schemas"
:url "http://github.com/plumatic/schema-generators"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/test.check "0.9.0"]
[prismatic/schema "1.2.1"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.10.520"]]
:plugins [[lein-codox "0.9.4"]
[lein-release/lein-release "1.0.4"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}}
:aliases {"all" ["with-profile" "dev:dev,1.9:dev,1.10"]
"deploy" ["do" "clean," "deploy" "clojars"]
"test" ["do" "clean," "test," "doo" "node" "test" "once"]}
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10"]]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src"]
:compiler {:output-to "target/js/schema_generators_dev.js"
:optimizations :whitespace
:pretty-print true}}
{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "target/js/schema_generators_test.js"
:main schema-generators.runner
:target :nodejs
:optimizations :none}}
{:id "release"
:source-paths ["src"]
:compiler {:output-to "target/js/schema_generators.js"
:optimizations :advanced}}]}
:jar-exclusions [#"\.swp|\.swo|\.DS_Store"]
:lein-release {:deploy-via :shell
:shell ["lein" "deploy"]}
:codox {:source-uri "http://github.com/plumatic/schema-generators/blob/master/"}
:signing {:gpg-key "66E0BF75"})