From e78c70e53dacba9617350af437913b81aee72260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 10 Jul 2017 18:31:59 +0200 Subject: [PATCH] misc: set supported Node version to >= 6 --- README.md | 2 ++ package.json | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 099c851af4..9c94325135 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,8 @@ You can get our mobile versions from here: ## Building the sources +Node.js >= 6 is required. + On Debian/Ubuntu systems, the required packages can be installed with: ``` sudo apt-get install npm nodejs-legacy diff --git a/package.json b/package.json index b959386135..226ec979ab 100644 --- a/package.json +++ b/package.json @@ -98,6 +98,9 @@ "webpack": "2.6.1", "webpack-dev-server": "2.4.5" }, + "engines": { + "node": ">=6.0.0" + }, "license": "Apache-2.0", "scripts": { "lint": "jshint . && eslint . && flow",