Peter Etelej 318f20e826
Bump up minimum required Node to 10.16 (#7962)
Updated README docs & package.json `engine` versions to bump up the
minimum required Node version from `10.10` to `10.16` (or `10.16.0+`)

Strapi no longer supports `10.10` since it updated `sharp` to `0.26.0`
( https://github.com/strapi/strapi/pull/7729 ) which requires Node 10.16.0+
(See https://github.com/lovell/sharp/blob/master/docs/changelog.md#v0260---25th-august-2020 )

` yarn create strapi-app my-project --quickstart` on 10.10 fails with error
```
error sharp@0.26.0: The engine "node" is incompatible with this module. Expected version ">=10.16.0". Got "10.10.0"
error Found incompatible module.
```

Signed-off-by: Peter Etelej <peter@etelej.com>
2020-09-22 16:00:13 +02:00

47 lines
959 B
JSON

{
"name": "create-strapi-app",
"version": "3.1.5",
"description": "Generate a new Strapi application.",
"license": "SEE LICENSE IN LICENSE",
"homepage": "http://strapi.io",
"keywords": [
"create-strapi-app",
"create",
"new",
"generate",
"strapi"
],
"main": "./index.js",
"bin": {
"create-strapi-app": "./index.js"
},
"files": [
"create-strapi-app.js",
"index.js"
],
"dependencies": {
"commander": "^2.20.0",
"strapi-generate-new": "3.1.5"
},
"scripts": {
"test": "echo \"no tests yet\""
},
"author": {
"email": "hi@strapi.io",
"name": "Strapi team",
"url": "http://strapi.io"
},
"repository": {
"type": "git",
"url": "git://github.com/strapi/strapi.git"
},
"bugs": {
"url": "https://github.com/strapi/strapi/issues"
},
"engines": {
"node": ">=10.16.0 <13",
"npm": ">=6.0.0"
},
"gitHead": "231263a3535658bab1e9492c6aaaed8692d62a53"
}