Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes J. Schmidt committed Feb 9, 2016
1 parent 9e9c76c commit 15175e7
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1 +1,2 @@
node_modules/
node_modules
.nyc_output
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -3,8 +3,8 @@

var crypto = require('crypto')
var async = require('async')
var omit = require('lodash/object/omit')
var isEqual = require('lodash/lang/isEqual')
var omit = require('lodash/omit')
var isEqual = require('lodash/isEqual')
var nanoOption = require('nano-option')
var compile = require('couchdb-compile')
var ensure = require('couchdb-ensure')
Expand Down
18 changes: 9 additions & 9 deletions package.json
Expand Up @@ -5,7 +5,7 @@
"bin": "cli.js",
"scripts": {
"pretest": "standard",
"test": "tap test/*.js",
"test": "tap --coverage test/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
Expand All @@ -24,18 +24,18 @@
},
"homepage": "https://github.com/jo/couchdb-push",
"dependencies": {
"async": "^1.4.2",
"chokidar": "^1.2.0",
"couchdb-compile": "^1.6.2",
"async": "^1.5.2",
"chokidar": "^1.4.2",
"couchdb-compile": "^1.6.3",
"couchdb-ensure": "^1.3.1",
"lodash": "^3.10.1",
"lodash": "^4.3.0",
"minimist": "^1.2.0",
"nano-option": "^1.1.1"
"nano-option": "^1.2.2"
},
"devDependencies": {
"nano": "^6.1.5",
"nano": "^6.2.0",
"semantic-release": "^6.0.3",
"standard": "^5.4.1",
"tap": "^5.0.0"
"standard": "^6.0.4",
"tap": "^5.4.3"
}
}
46 changes: 46 additions & 0 deletions package.json.orig
@@ -0,0 +1,46 @@
{
"name": "couchdb-push",
"description": "Deploy CouchDB documents from directory, JSON or module.",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"pretest": "standard",
"test": "tap --coverage test/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jo/couchdb-push"
},
"keywords": [
"couchdb",
"couchapp",
"build-tool"
],
"author": "Johannes J. Schmidt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jo/couchdb-push/issues"
},
"homepage": "https://github.com/jo/couchdb-push",
"dependencies": {
"async": "^1.5.2",
"chokidar": "^1.4.2",
"couchdb-compile": "^1.6.3",
"couchdb-ensure": "^1.3.1",
"lodash": "^4.3.0",
"minimist": "^1.2.0",
"nano-option": "^1.2.2"
},
"devDependencies": {
"nano": "^6.2.0",
"semantic-release": "^6.0.3",
<<<<<<< HEAD
"standard": "^5.4.1",
"tap": "^5.0.0"
=======
"standard": "^6.0.4",
"tap": "^5.4.3"
>>>>>>> 8cf70e9... fix: update dependencies
}
}

0 comments on commit 15175e7

Please sign in to comment.