forked from r0man/inflections-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
36 lines (36 loc) · 1.77 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
(defproject inflections "0.7.6"
:description "Rails-like inflections for Clojure(Script)."
:url "http://github.com/r0man/inflections-clj"
:author "Roman Scherer"
:min-lein-version "2.0.0"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]]
:plugins [[lein-cljsbuild "0.3.0"]]
:hooks [leiningen.cljsbuild]
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:cljsbuild {:builds [{:compiler {:output-to "target/inflections-test.js"
:optimizations :advanced
:pretty-print true}
:source-paths ["test/cljs"]}
{:compiler {:output-to "target/inflections-debug.js"
:optimizations :whitespace
:pretty-print true}
:source-paths ["src/cljs"]}
{:compiler {:output-to "target/inflections.js"
:optimizations :advanced
:pretty-print false}
:source-paths ["src/cljs"]
:jar true}]
:repl-listen-port 9000
:repl-launch-commands
{"chromium" ["chromium" "http://localhost:9000/"]
"firefox" ["firefox" "http://localhost:9000/"]
"phantomjs" ["phantomjs"
"resources/repl.js"
"resources/repl.html"
:stdout ".repl-phantom-naked-out"
:stderr ".repl-phantom-naked-err"]}
:test-commands {;"phantomjs" ["bin/phantomjs-test"]
"v8" ["bin/v8-test"]}})