From 9a75f3f4d9da0dcca9a0eb369eb54ae361e2d262 Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Wed, 18 Oct 2017 11:25:00 -0400 Subject: [PATCH] limit "engines" to <8 (#16) With the introduction of `async-hooks` in v8.x, there should be a way to do this without `process.binding('async_wrap');` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e7a8fee..f127414 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A lightweight module for code tracing using async-wrap", "main": "index.js", "engines": { - "node": ">=5.0.0" + "node": ">=5.0.0 <8" }, "scripts": { "lint": "eslint lib/*.js test/*.js index.js",