Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanlawson committed Oct 12, 2014
0 parents commit 3db56f0
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .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
3 changes: 3 additions & 0 deletions index.js
@@ -0,0 +1,3 @@
#!/usr/bin/env node
'use strict';

30 changes: 30 additions & 0 deletions 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 <nolan.lawson@gmail.com>",
"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"
}
}

0 comments on commit 3db56f0

Please sign in to comment.