runtime: enforce minimal node version to 6.9.0

Etherpad 1.6.6 does not run on node <= 5 already.
Node 6.9 is the first LTS release in the 6 series, and comes with npm 3.10.8.

Declarations in package.json are advisory unless the user has set
`engine-strict` config flag.

Updated the docs accordingly.
This commit is contained in:
muxator 2018-07-27 01:45:06 +02:00 committed by muxator
parent f1056bf01a
commit 7544585908
5 changed files with 50 additions and 4 deletions

View file

@ -99,7 +99,7 @@ Your plugin must also contain a [package definition file](https://docs.npmjs.com
"author": "USERNAME (REAL NAME) <MAIL@EXAMPLE.COM>",
"contributors": [],
"dependencies": {"MODULE": "0.3.20"},
"engines": { "node": ">= 0.6.0"}
"engines": { "node": ">= 6.9.0"}
}
```