From cfbe7f593bb83c89ad54b4095d42ff702a4f66de Mon Sep 17 00:00:00 2001 From: Ryan Kirkman Date: Tue, 24 Jan 2012 13:14:45 +1000 Subject: [PATCH] npm install wouldn't work for me, failing with the following message (indicating it couldn't find the specified trycatch version): https://gist.github.com/1667568 I fixed this by changing the trycatch version requirement. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ec8c770..0fa4bba 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,6 @@ "express": "2.5.5", "jade": ">= 0.0.1", "markdown": "~0.3.1", - "trycatch": "~0.1.0" + "trycatch": ">= 0.0.9" } }