diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..59d842b --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Logs +logs +*.log + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directory +# Commenting this out is preferred by some people, see +# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- +node_modules + +# Users Environment Variables +.lock-wscript diff --git a/index.js b/index.js new file mode 100644 index 0000000..330db96 --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +#!/usr/bin/env node +'use strict'; + diff --git a/package.json b/package.json new file mode 100644 index 0000000..7b88188 --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "name": "pouchdb-dump-cli", + "version": "1.0.0", + "description": "Tool to dump a PouchDB/CouchDB database", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/nolanlawson/pouchdb-dump-cli.git" + }, + "keywords": [ + "pouchdb", + "couchdb", + "dump", + "cli" + ], + "author": "Nolan Lawson ", + "license": "Apache 2", + "bugs": { + "url": "https://github.com/nolanlawson/pouchdb-dump-cli/issues" + }, + "homepage": "https://github.com/nolanlawson/pouchdb-dump-cli", + "dependencies": { + "pouchdb": "^3.0.6", + "pouchdb-replication-stream": "^0.1.0", + "yargs": "^1.3.2" + } +}