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
|
(defproject camel-snake-kebab "0.4.3"
:min-lein-version "2.5.2"
:description "A library for word case conversions."
:url "https://clj-commons.org/camel-snake-kebab/"
:license {:name "Eclipse Public License 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "https://github.com/clj-commons/camel-snake-kebab"}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.x"]]}}
:jar-exclusions [#"\.DS_Store"]
:source-paths ["src"]
:test-paths ["test"]
:cljsbuild {:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "target/testable.js"
:main "camel-snake-kebab.test-runner"
:target :nodejs
:optimizations :simple}}]}
:aliases {"test-all" ["do" "test," "doo" "node" "test" "once," "doo" "planck" "test" "once"]}
:local-repo "debian/maven-repo")
|