From 4248184f90fd7938d442f2c8b7ec1b3684b6d267 Mon Sep 17 00:00:00 2001 From: ajs139 Date: Fri, 11 Aug 2017 12:40:02 -0400 Subject: [PATCH] Allow this repository to work with NPM 5 Currently installing this project with NPM 5 results in an "Unsupported engine" error. This allows later versions of NPM to use this project. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6ef3d23..d53e301 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,6 @@ }, "main": "dist/index.js", "engines": { - "npm": "^3.0.0" + "npm": ">=3.0.0" } }