From 0c871fd8f24e55a0637da9fe4be1ac46548002ba Mon Sep 17 00:00:00 2001 From: YvesMerl Date: Sat, 21 Jan 2017 18:52:21 +0100 Subject: [PATCH] chore: Add node engine>=v5.12.0 to all packages --- packages/eslint-config-poosh/package.json | 5 ++++- packages/poosh-cli/package.json | 3 +++ packages/poosh-common/package.json | 3 +++ packages/poosh-core/package.json | 3 +++ packages/poosh-plugin-header-location-from-html/package.json | 3 +++ packages/poosh-plugin-s3/package.json | 3 +++ packages/poosh/package.json | 3 +++ 7 files changed, 22 insertions(+), 1 deletion(-) diff --git a/packages/eslint-config-poosh/package.json b/packages/eslint-config-poosh/package.json index 38b5c8e..9b82784 100644 --- a/packages/eslint-config-poosh/package.json +++ b/packages/eslint-config-poosh/package.json @@ -20,5 +20,8 @@ "base.json5", "mocha.json5", "node.json5" - ] + ], + "engines": { + "node": ">=v5.12.0" + } } diff --git a/packages/poosh-cli/package.json b/packages/poosh-cli/package.json index 3eeb6b6..1071044 100644 --- a/packages/poosh-cli/package.json +++ b/packages/poosh-cli/package.json @@ -27,6 +27,9 @@ "bin": { "poosh": "./bin/poosh.js" }, + "engines": { + "node": ">=v5.12.0" + }, "dependencies": { "babel-polyfill": "^6.22.0", "bluebird": "^3.4.7", diff --git a/packages/poosh-common/package.json b/packages/poosh-common/package.json index 4bec4c5..27c7bf1 100644 --- a/packages/poosh-common/package.json +++ b/packages/poosh-common/package.json @@ -19,6 +19,9 @@ "lib/" ], "main": "lib/index.js", + "engines": { + "node": ">=v5.12.0" + }, "dependencies": { "lodash": "^4.17.4", "ms": "^0.7.2" diff --git a/packages/poosh-core/package.json b/packages/poosh-core/package.json index 0e5419a..d69ecd6 100644 --- a/packages/poosh-core/package.json +++ b/packages/poosh-core/package.json @@ -19,6 +19,9 @@ "lib/" ], "main": "lib/index.js", + "engines": { + "node": ">=v5.12.0" + }, "dependencies": { "bluebird": "^3.4.7", "crc": "^3.4.4", diff --git a/packages/poosh-plugin-header-location-from-html/package.json b/packages/poosh-plugin-header-location-from-html/package.json index 6bcbc03..f8192d4 100644 --- a/packages/poosh-plugin-header-location-from-html/package.json +++ b/packages/poosh-plugin-header-location-from-html/package.json @@ -19,6 +19,9 @@ "lib/" ], "main": "lib/index.js", + "engines": { + "node": ">=v5.12.0" + }, "dependencies": { "cheerio": "^0.22.0" } diff --git a/packages/poosh-plugin-s3/package.json b/packages/poosh-plugin-s3/package.json index 1da0a87..764265b 100644 --- a/packages/poosh-plugin-s3/package.json +++ b/packages/poosh-plugin-s3/package.json @@ -19,6 +19,9 @@ "lib/" ], "main": "lib/index.js", + "engines": { + "node": ">=v5.12.0" + }, "dependencies": { "aws-sdk": "^2.7.27", "bluebird": "^3.4.7", diff --git a/packages/poosh/package.json b/packages/poosh/package.json index c435283..34f915b 100644 --- a/packages/poosh/package.json +++ b/packages/poosh/package.json @@ -21,5 +21,8 @@ "main": "bin/poosh.js", "bin": { "poosh": "bin/poosh.js" + }, + "engines": { + "node": ">=v5.12.0" } }