Stub out Leiningen and npm project files.
Signed-off-by: Richard Newman <rnewman@twinql.com>
This commit is contained in:
parent
3a56c159fa
commit
f7621712df
3 changed files with 56 additions and 10 deletions
30
.gitignore
vendored
30
.gitignore
vendored
|
@ -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
|
||||
|
|
30
package.json
Normal file
30
package.json
Normal file
|
@ -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"
|
||||
}
|
6
project.clj
Normal file
6
project.clj
Normal file
|
@ -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"]])
|
Loading…
Reference in a new issue