forked from wilkerlucio/pathom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
58 lines (45 loc) · 2.61 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
48
49
50
51
52
53
54
55
56
57
58
(defproject com.wsscode/pathom "2.3.0-alpha9"
:description "A Clojure library designed to provide a collection of helper functions to support Clojure(script) graph parsers using\nom.next graph syntax."
:url "https://github.com/wilkerlucio/pathom"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:source-paths ["src"]
:dependencies [[camel-snake-kebab "0.4.0"]
[com.wsscode/async "1.0.2"]
[com.wsscode/spec-inspec "1.0.0-alpha2"]
[edn-query-language/eql "1.0.0"]
[org.clojure/core.async "0.4.474"]
[org.clojure/data.json "0.2.6"]
[com.cognitect/transit-clj "1.0.324" :scope "test"]
[com.cognitect/transit-cljs "0.8.256" :scope "test"]
[com.fulcrologic/guardrails "0.0.12"]
; provided
[org.clojure/test.check "1.0.0" :scope "provided"]
[cheshire/cheshire "5.8.1" :scope "provided"]
[clj-http "3.8.0" :scope "provided"]
[fulcrologic/fulcro "2.6.0" :scope "provided"]
[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.9.946" :scope "provided"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild {:builds [{:id "sanity"
:source-paths ["src"]
:compiler {:optimizations :whitespace
:verbose true
:main com.wsscode.pathom.connect}}]}
:jar-exclusions [#"src-docs/.*" #"docs/.+" #"node-modules/.+"]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo/"
:creds :gpg :checksum :ignore}]
["releases" :clojars]
["snapshots" :clojars]]
:aliases {"pre-release" [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "v"]]
"post-release" [["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]}
:profiles {:dev {:source-paths ["src" "src-docs" "workspaces/src"]
:dependencies [[criterium "0.4.4"]
[nubank/workspaces "1.0.0-preview7"]
[com.cognitect/transit-clj "0.8.313"]
[com.cognitect/transit-cljs "0.8.256"]]}})