mentat/package.json
Nick Alexander d5cfbeaa45 Add tempfile and with-tempfile to CLJS.
We already have a nice library like this for CLJ (tempfile); this builds
the same thing for CLJS, using Node.js's tmp.
2016-07-12 13:56:26 -07:00

31 lines
800 B
JSON

{
"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.",
"dependencies": {
"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"
},
"devDependencies": {
"tmp": "0.0.28"
},
"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",
"main": "./datomish.js",
"files": ["datomish.js"]
}