From 08a40d74307a6cd9e7366d87cee39d888a1e8770 Mon Sep 17 00:00:00 2001 From: Stefan Penner Date: Sat, 28 Mar 2015 06:50:58 -0700 Subject: [PATCH] remove engine declaration this repo obviously works with engines newer then what was specified. This just results in an extra noisy warning ```js npm WARN engine tmpl@1.0.3: wanted: {"node":"0.6.x"} (current: {"node":"1.6.2","npm":"2.7.3"}) ``` --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index afe277c..42ea9b5 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,5 @@ "scripts": { "test": "NODE_PATH=./lib mocha --ui exports" }, "devDependencies": { "mocha": "0.12.x" - }, - "engines": { "node": "0.6.x" } + } }