-
Notifications
You must be signed in to change notification settings - Fork 35
/
project.clj
65 lines (65 loc) · 2.54 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
59
60
61
62
63
64
65
(defproject macchiato/core "0.2.24"
:description "ClojureScript Ring style HTTP server abstraction for Node.js."
:url "https://github.com/yogthos/macchiato-framework/macchiato-core"
:scm {:name "git"
:url "https://github.com/macchiato-framework/macchiato-core.git"}
:license {:name "MIT"
:url "http://opensource.org/licenses/MIT"}
:clojurescript? true
:dependencies [[com.andrewmcveigh/cljs-time "0.5.2"]
[com.cognitect/transit-cljs "0.8.256"]
[funcool/cuerdas "2022.06.13-401"]
[macchiato/fs "0.2.2"]
[org.clojure/clojure "1.10.1" :scope "provided"]
[org.clojure/clojurescript "1.10.597" :scope "provided"]]
:plugins [[lein-cljsbuild "1.1.6"]
[lein-codox "0.10.2"]
[lein-doo "0.1.7"]
[macchiato/lein-npm "0.6.6"]]
:npm {:write-package-json true
:name "@macchiato/core"
:private false
:dependencies [[concat-stream "1.6.2"]
[content-type "1.0.4"]
[cookies "0.7.1"]
[etag "1.8.1"]
[lru "3.1.0"]
[multiparty "4.1.3"]
[random-bytes "1.0.0"]
[qs "6.5.1"]
[simple-encryptor "1.2.0"]
[url "0.11.0"]
[ws "5.1.1"]]
:directories {:lib "src"}
:files ["src/*"]
:keywords ["cljs" "cljc" "self-host" "macro"]
:author {:name "Dmitri Sotnikov"
:email "[email protected]"
:url "http://yogthos.net/"}}
:filespecs [{:type :bytes
:path "project.clj"
:bytes ~(slurp "project.clj")}]
: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"]]})