Take dependencies on a few libraries.
Signed-off-by: Richard Newman <rnewman@twinql.com>
This commit is contained in:
parent
df08fe23d0
commit
27d35f030d
2 changed files with 9 additions and 3 deletions
|
@ -1,16 +1,19 @@
|
||||||
{
|
{
|
||||||
"name": "datomish",
|
"name": "datomish",
|
||||||
"private": "true",
|
"private": "true",
|
||||||
"engines": { "node": "6.x.x" },
|
"engines": {
|
||||||
|
"node": "6.x.x"
|
||||||
|
},
|
||||||
"version": "0.1.0-SNAPSHOT",
|
"version": "0.1.0-SNAPSHOT",
|
||||||
"description": "A persistent, embedded knowledge base inspired by Datomic and DataScript.",
|
"description": "A persistent, embedded knowledge base inspired by Datomic and DataScript.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"source-map-support": "ncalexan/node-source-map-support#fileUrls-plus",
|
"source-map-support": "ncalexan/node-source-map-support#fileUrls-plus",
|
||||||
|
"sqlite3": "mossop/node-sqlite3#v3.1.4.1",
|
||||||
|
"thenify-all": "^1.6.0",
|
||||||
"ws": "1.1.1"
|
"ws": "1.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {},
|
||||||
},
|
|
||||||
"directories": {
|
"directories": {
|
||||||
"test": "test"
|
"test": "test"
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,4 +3,7 @@
|
||||||
:url "https://github.com/mozilla/datomish"
|
:url "https://github.com/mozilla/datomish"
|
||||||
:license {:name "Mozilla Public License Version 2.0"
|
:license {:name "Mozilla Public License Version 2.0"
|
||||||
:url "https://github.com/mozilla/datomish/blob/master/LICENSE"}
|
:url "https://github.com/mozilla/datomish/blob/master/LICENSE"}
|
||||||
|
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.1"]
|
||||||
|
[org.clojure/tools.nrepl "0.2.10"]]
|
||||||
|
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}}
|
||||||
:dependencies [[org.clojure/clojurescript "1.9.89"]])
|
:dependencies [[org.clojure/clojurescript "1.9.89"]])
|
||||||
|
|
Loading…
Reference in a new issue