This tag is used for user-defined scripts that are executed by a package manager after the installation of a software package.
I created a module (webapp-module-storage) which has the following definitions: package.json { "dependencies": { ... }, "devDependencies": { "gulp": "^3.9.1", ... }, "name": "webapp-module-storage", "scripts": { "postinstall": "gulp …
npm gulp npm-install post-installI'm trying to add a post-install task to Python distutils as described in How to extend distutils with a simple …
python installation setuptools distutils post-install