From 754381236c91ac6cbc128f2b7a7b956c7a651492 Mon Sep 17 00:00:00 2001 From: tincho Date: Mon, 13 May 2019 11:29:05 -0300 Subject: [PATCH] mention required node version 10 --- .npmrc | 1 + README.md | 2 +- package.json | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..b6f27f1 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +engine-strict=true diff --git a/README.md b/README.md index aad7915..2ba44b1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ CYP is a web-based frontend for [MPD](https://www.musicpd.org/), the Music Playe ## Installation -Make sure you have a working MPD setup first. +Make sure you have a working MPD setup first and Node version >= 10 ```sh git clone https://github.com/ondras/cyp.git && cd cyp diff --git a/package.json b/package.json index 2e30b2f..88b6bbe 100644 --- a/package.json +++ b/package.json @@ -15,5 +15,8 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", - "license": "ISC" + "license": "ISC", + "engines": { + "node": ">=10.0.0" + } }