From f7621712dfd624c9c157474c92e9b3f1a4a808f5 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Tue, 5 Jul 2016 12:05:49 -0700 Subject: [PATCH] Stub out Leiningen and npm project files. Signed-off-by: Richard Newman --- .gitignore | 30 ++++++++++++++++++++---------- package.json | 30 ++++++++++++++++++++++++++++++ project.clj | 6 ++++++ 3 files changed, 56 insertions(+), 10 deletions(-) create mode 100644 package.json create mode 100644 project.clj 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"]])