-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
project.clj
49 lines (38 loc) · 2.23 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
(defproject com.wsscode/pathom "2.2.0-beta8"
: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 "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src"]
:dependencies [[camel-snake-kebab "0.4.0"]
[com.wsscode/spec-inspec "1.0.0-alpha2"]
[org.clojure/data.json "0.2.6"]
[org.clojure/math.combinatorics "0.1.4"]
[spec-coerce "1.0.0-alpha6"]
; provided
[fulcrologic/fulcro "2.6.0" :scope "provided"]
[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.9.946" :scope "provided"]
[org.clojure/core.async "0.4.474" :scope "provided"]
[org.clojure/test.check "0.10.0-alpha3" :scope "provided"]
[clj-http "3.8.0" :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 [["releases" :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"]]}})