forked from macchiato-framework/macchiato-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
53 lines (53 loc) · 2.06 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
(defproject macchiato/core "0.2.3"
:description "core Macchiato HTTP library"
:url "https://github.com/yogthos/macchiato-framework/macchiato-core"
:scm {:name "git"
:url "https://github.com/macchiato-framework/macchiato-core.git"}
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:clojurescript? true
:dependencies [[com.andrewmcveigh/cljs-time "0.5.0"]
[com.cognitect/transit-cljs "0.8.239"]
[funcool/cuerdas "2.0.3"]
[macchiato/fs "0.1.1"]
[org.clojure/clojure "1.8.0" :scope "provided"]
[org.clojure/clojurescript "1.9.854" :scope "provided"]]
:plugins [[lein-cljsbuild "1.1.6"]
[lein-codox "0.10.2"]
[lein-doo "0.1.7"]
[lein-npm "0.6.2"]]
:npm {:dependencies [[concat-stream "1.5.2"]
[content-type "1.0.2"]
[cookies "0.6.2"]
[etag "1.7.0"]
[lru "3.1.0"]
[multiparty "4.1.2"]
[random-bytes "1.0.0"]
[qs "6.3.0"]
[simple-encryptor "1.1.0"]
[url "0.11.0"]
[ws "1.1.1"]]}
:codox {:language :clojurescript}
:profiles {:test
{:cljsbuild
{:builds
{:test
{:source-paths ["src" "test"]
:compiler {:main macchiato.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"]]})