From 73eddf3de3c145beee6358dab34c78a73536e8a6 Mon Sep 17 00:00:00 2001 From: Erik Lundin Date: Tue, 26 Jun 2012 09:45:14 +0100 Subject: [PATCH] Fix v0.8.0 compability (issue #40) `package.json` in the v0.1.6 release requires the node binary to be of version `>= 0.5 < 0.7`. This meant that when running `npm install gzippo`, npm would fall back to v0.0.6, which accepts any node version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a2902a3..15748e5 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "compress" ], "engines": { - "node": ">= 0.5 < 0.7" + "node": ">= 0.5 < 0.9" }, "scripts": { "test": "expresso"