From ace1f869f1d60e36d310c71cf06b2b5b05689343 Mon Sep 17 00:00:00 2001 From: Le Cojoc Date: Sun, 26 Aug 2018 04:06:50 +0300 Subject: [PATCH] Limit tar dependency to version 2 Version 3 removed tar.Extract, leading to npm install problems. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ffa6cb0..703b834 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Bindings for the native curses library, a full featured console IO library.", "main": "./curses", "dependencies": { - "tar": ">=0.1.13" + "tar": "~2" }, "scripts": { "install": "node ./pre-build.js",