diff --git a/.gitignore b/.gitignore index 47fed6c2..2b5b9a27 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,22 @@ +*.class +*.jar +*jar +*~ +.*.sw* +.hg/ +.hgignore +.lein-deps-sum +.lein-failures +.lein-plugins/ +.lein-repl-history +.nrepl-port +.sw* +/.lein-* +/.nrepl-port +/checkouts/ +/classes/ +/lib/ +/node_modules/ +/target/ pom.xml pom.xml.asc -*jar -/lib/ -/classes/ -/target/ -/checkouts/ -.lein-deps-sum -.lein-repl-history -.lein-plugins/ -.lein-failures -.nrepl-port diff --git a/package.json b/package.json new file mode 100644 index 00000000..41d15ad6 --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "name": "datomish", + "private": "true", + "engines": { "node": "6.x.x" }, + "version": "0.1.0-SNAPSHOT", + "description": "A persistent, embedded knowledge base inspired by Datomic and DataScript.", + "main": "index.js", + "dependencies": { + "source-map-support": "ncalexan/node-source-map-support#fileUrls-plus", + "ws": "1.1.1" + }, + "devDependencies": { + }, + "directories": { + "test": "test" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/mozilla/datomish.git" + }, + "author": "Mozilla Corporation", + "license": "MPL-2.0", + "bugs": { + "url": "https://github.com/mozilla/datomish/issues" + }, + "homepage": "https://github.com/mozilla/datomish#readme" +} diff --git a/project.clj b/project.clj new file mode 100644 index 00000000..09c2b77d --- /dev/null +++ b/project.clj @@ -0,0 +1,6 @@ +(defproject lib "0.1.0-SNAPSHOT" + :description "A persistent, embedded knowledge base inspired by Datomic and DataScript." + :url "https://github.com/mozilla/datomish" + :license {:name "Mozilla Public License Version 2.0" + :url "https://github.com/mozilla/datomish/blob/master/LICENSE"} + :dependencies [[org.clojure/clojure "1.8.0"]])