I have a package x
that has postinstall script. During development I used it to do some tasks that are needed during development of this package.
Now I've published this package. When installing it with npm install
(x
is listed as dependency in package.json) I don't want to execute postinstall task and this is not needed for package to be used as runtime dependency.
Is is possible to achieve it?