-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
23 lines (18 loc) · 1.1 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
(defproject com.github.strojure/parsesso "1.2.3-SNAPSHOT"
:description "Parser combinators library for Clojure(Script)."
:url "https://github.com/strojure/parsesso"
:license {:name "The Unlicense" :url "https://unlicense.org"}
:dependencies []
:profiles {:provided {:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]]}
:dev,,,,, {:dependencies [;; clojurescript tests
[com.google.guava/guava "31.1-jre"]
[olical/cljs-test-runner "3.8.0"]
;; inspiration libs
[org.blancas/kern "1.1.0"]
[rm-hull/jasentaa "0.2.5"]
[the/parsatron "0.0.8"]]
:source-paths ["doc"]}}
:aliases {"cljs-test" ["run" "-m" "cljs-test-runner.main"]}
:clean-targets ["target" "cljs-test-runner-out"]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo" :sign-releases false}]])