-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
46 lines (39 loc) · 2.21 KB
/
project.clj
File metadata and controls
46 lines (39 loc) · 2.21 KB
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
(defproject district0x/district-graphql-utils "1.0.12-SNAPSHOT"
:description "Set of functions helpful for working with GraphQL"
:url "https://github.com/district0x/district-graphql-utils"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[camel-snake-kebab "0.4.0"]
[cljsjs/graphql "0.13.1-0"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[district0x/district-cljs-utils "1.0.2"]
[org.clojure/clojurescript "1.10.238"]
[district0x/bignumber "1.0.3"]]
:doo {:paths {:karma "./node_modules/karma/bin/karma"}}
:npm {:devDependencies [[karma "1.7.1"]
[karma-chrome-launcher "2.2.0"]
[karma-cli "1.0.1"]
[karma-cljs-test "0.1.0"]]}
:profiles {:dev {:dependencies [[day8.re-frame/test "0.1.5"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.nrepl "0.2.13"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.8"]
[lein-npm "0.6.2"]]}}
:cljsbuild {:builds [{:id "tests"
:source-paths ["src" "test"]
:compiler {:output-to "tests-output/tests.js"
:output-dir "tests-output"
:main "tests.runner"
:optimizations :none}}]}
:deploy-repositories [["snapshots" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["releases" {:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]]
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["deploy"]])