forked from threatgrid/asami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
29 lines (29 loc) · 1.02 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
(defproject org.clojars.quoll/asami "0.2.3-SNAPSHOT"
:description "An in-memory implementation of a graph store, implementing the naga-store protocol"
:url "http://github.com/threatgrid/asami"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238"]
[prismatic/schema "1.1.7"]
[org.clojure/core.cache "0.7.1"]
[org.clojars.quoll/naga-store "0.1.0"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild {
:builds {
:dev
{:source-paths ["src"]
:compiler {
:output-to "out/asami/core.js"
:optimizations :simple
:pretty-print true}}
:test
{:source-paths ["src" "test"]
:compiler {
:output-to "out/asami/test_memory.js"
:optimizations :simple
:pretty-print true}}
}
:test-commands {
"unit" ["node" "out/asami/test_memory.js"]}
})