Fixing deep dependency problem with node 6.x

this commit has been blatantly stolen from @samselikoff in ember-cli-addon-docs. It prevents an issue introduced via a deep dependency that no longer supports node 6 (which we still would like to support).
see: 231275b5a4
see: https://github.com/salesforce/tough-cookie/pull/141

Signed-off-by: Claudius Coenen <opensource@amenthes.de>
This commit is contained in:
Claudius Coenen 2019-01-23 23:32:15 +01:00
parent a9d12e3a28
commit fa0dea0a1b
1 changed files with 3 additions and 0 deletions

View File

@ -132,6 +132,9 @@
"ws": "^6.0.0",
"xss": "^1.0.3"
},
"resolutions": {
"**/tough-cookie": "~2.4.0"
},
"engines": {
"node": ">=6.x"
},