scratchdb
Version:
A ephemeral CouchDB-like database
40 lines (39 loc) • 890 B
JSON
{
"name": "scratchdb",
"version": "1.0.0",
"description": "A ephemeral CouchDB-like database",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"pretest": "standard",
"test": "node test.js",
"watch": "onchange *.js -- node test.js"
},
"keywords": [
"memory",
"ephemeral",
"couchdb",
"pouchdb",
"server"
],
"author": "Tom Vincent <npm@tlvince.com> (https://tlvince.com/)",
"license": "MIT",
"devDependencies": {
"onchange": "^1.1.0",
"standard": "^5.0.2"
},
"dependencies": {
"express": "^4.13.3",
"express-pouchdb": "^0.15.0",
"memdown": "^1.0.0",
"pouchdb": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tlvince/scratchdb.git"
},
"bugs": {
"url": "https://github.com/tlvince/scratchdb/issues"
},
"homepage": "https://github.com/tlvince/scratchdb#readme"
}