I'm having trouble updating a dependent package included in Botkit. When I run npm install on the package.json provided below, Npm alerts me that the hoek package is vulnerable. I attempted to resolve this by running npm audit fix
but it did not work. Upon running npm ls hoek
, it appears that Botkit has installed an outdated version of the package [email protected]. I'm confused as to why it would install an old version.
//package.json
{
"name": "delete-me",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"botkit": "^0.6.16"
}
}