-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
79 lines (79 loc) · 2.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(defproject clojusc/env-ini "0.4.1"
:description "Clojure(script) functions for accessing config data from the ENV or INI files"
:url "https://github.com/clojusc/env-ini"
:license {
:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:exclusions [org.clojure/clojure]
:dependencies [
[clojure-ini "0.0.2"]
[clojusc/cljs-tools "0.2.0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.946"]]
:plugins [
[lein-cljsbuild "1.1.7"]
[lein-npm "0.6.2"]]
:npm {
:dependencies [
[ini "1.3.4"]]}
:clean-targets ^{:protect false}
["resources/public/js"
"target"]
:cljsbuild {
:builds [{
:id "env-ini"
:compiler {
:main "env-ini.core"
:output-to "resources/public/js/env_ini.js"
:output-dir "resources/public/js"}} {
:id "node"
:compiler {
:target :nodejs
:output-to "target/node/env_ini.js"
:output-dir "target/node"}}]}
:profiles {
:ubercompile {
:aot :all
:source-paths ["src" "test/clj"]}
:test {
:plugins [
[jonase/eastwood "0.2.4"]
[lein-ancient "0.6.12"]
[lein-bikeshed "0.4.1"]
[lein-kibit "0.1.5"]
[lein-shell "0.5.0"]
[venantius/yagni "0.1.4"]]
:test-selectors {
:default :unit
:unit :unit
:system :system
:integration :integration}
:source-paths ["test/clj"]}
:dev {
:source-paths ["dev-resources/src/clj"]
:repl-options {
:init-ns clojusc.env-ini.dev}
:dependencies [
[org.clojure/tools.namespace "0.2.11"
:exclusions [org.clojure/clojure]]]}}
:aliases {
"check-deps" [
"with-profile" "+test" "ancient" "check" ":all"]
"kibit" [
"with-profile" "+test" "do"
["shell" "echo" "== Kibit =="]
["kibit"]]
"outlaw" [
"with-profile" "+test"
"eastwood" "{:namespaces [:source-paths] :source-paths [\"src\"]}"]
"lint" [
"with-profile" "+test" "do"
["check"] ["kibit"] ["outlaw"]]
"build" ["with-profile" "+test" "do"
["check-deps"]
["lint"]
["test"]
["compile"]
["with-profile" "+ubercompile" "compile"]
["clean"]
["uberjar"]]})