Whenever I run npm install <package>
it installs the package alright, but then it automatically runs the prepare script.
It's worth mentioning that I've already checked that there is no postinstall
script in the package.json.
Thank you girls/guys so much in advance! :)
From https://docs.npmjs.com/misc/scripts:
prepare: Run both BEFORE the package is packed and published, and on local npm install without any arguments (See below). This is run AFTER prepublish, but BEFORE prepublishOnly.
Since NPM v5, prepare
script is executed when you run npm install