From e644ab098ab50eb8a388808c2590b7a38c9f6d67 Mon Sep 17 00:00:00 2001 From: Eddie Monge Date: Tue, 7 Jan 2020 15:20:59 -0800 Subject: [PATCH] chore: use greater than for npm engine Using a caret means that it wants npm 3 and not greater than npm 3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 28ab58f..ac7e109 100644 --- a/package.json +++ b/package.json @@ -65,6 +65,6 @@ }, "main": "dist/MaterialColorPicker.js", "engines": { - "npm": "^3.0.0" + "npm": ">=3.0.0" } }