travis ci – Run npm scripts using local deps
Question: Currently I run npm scripts using local deps this way: package.json: [crayon-6428eba682f4f573335988/] I don't want to use global deps, since I can forgot to add deps to the package.json. This way when a local dep is missing, then I got an error message and I don't have problems because some deps are not installed globally, e.g. karma plugins. Is there a better (shorter) way to define npm scripts using the local libs? Is…