mirror of
https://github.com/strapi/strapi.git
synced 2026-01-07 12:45:45 +00:00
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>
46 lines
921 B
JSON
46 lines
921 B
JSON
{
|
|
"name": "strapi-provider-upload-local",
|
|
"version": "3.1.5",
|
|
"description": "Local provider for strapi upload",
|
|
"homepage": "http://strapi.io",
|
|
"keywords": [
|
|
"upload",
|
|
"strapi"
|
|
],
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"main": "./lib",
|
|
"strapi": {
|
|
"isProvider": true
|
|
},
|
|
"author": {
|
|
"email": "hi@strapi.io",
|
|
"name": "Strapi team",
|
|
"url": "http://strapi.io"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Strapi team",
|
|
"email": "hi@strapi.io",
|
|
"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"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"scripts": {
|
|
"test": "echo \"no tests yet\""
|
|
},
|
|
"gitHead": "231263a3535658bab1e9492c6aaaed8692d62a53"
|
|
}
|