forked from macchiato-framework/macchiato-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
43 lines (41 loc) · 1.59 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
(defproject macchiato/auth "0.0.10"
:description "a library that provides authentication and authorization facilities"
:url "https://github.com/yogthos/macchiato-framework/macchiato-auth"
:scm {:name "git"
:url "https://github.com/macchiato-framework/macchiato-auth.git"}
:license {:name "Apache 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:clojurescript? true
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
[org.clojure/clojurescript "1.10.191" :scope "provided"]
[macchiato/core "0.2.10"]
[clout "2.2.0"]]
:plugins [[codox "0.6.4"]
[lein-doo "0.1.7"]
[lein-npm "0.6.2"]
[lein-cljsbuild "1.1.4"]]
;:npm {:dependencies [[bcrypt "1.0.2"]
; [scrypt "6.0.3"]]}
:profiles {:test
{:cljsbuild
{:builds
{:test
{:source-paths ["src" "test"]
:compiler {:main macchiato.test.runner
:output-to "target/test/core.js"
:target :nodejs
:optimizations :none
:source-map true
:pretty-print true}}}}
:doo {:build "test"}}}
:aliases
{"test"
["do"
["npm" "install"]
["clean"]
["with-profile" "test" "doo" "node" "once"]]
"test-watch"
["do"
["npm" "install"]
["clean"]
["with-profile" "test" "doo" "node"]]})