-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
25 lines (25 loc) · 1.21 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
(defproject alumbra/analyzer "0.1.18-SNAPSHOT"
:description "GraphQL Schema/Operation Transformations"
:url "https://github.com/alumbra/alumbra.analyzer"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"
:year 2016
:key "mit"}
:dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"]
[alumbra/spec "0.1.10" :scope "provided"]
[com.stuartsierra/dependency "0.2.0"]
[com.rpl/specter "1.0.1"]]
:profiles {:dev
{:dependencies [[org.clojure/test.check "0.9.0"]
[alumbra/parser "0.1.7"]
[alumbra/generators "0.2.2"]]}
:codox
{:plugins [[lein-codox "0.10.0"]]
:dependencies [[codox-theme-rdash "0.1.2"]]
:codox {:project {:name "alumbra.analyzer"}
:metadata {:doc/format :markdown}
:themes [:rdash]
:source-uri "https://github.com/alumbra/alumbra.analyzer/blob/v{version}/{filepath}#L{line}"
:namespaces [alumbra.analyzer]}}}
:aliases {"codox" ["with-profile" "+codox" "codox"]}
:pedantic? :abort)