I am using browserify to bundle front-end code. It\'s been great so far, but I\'ve been having difficulty mixing npm and non npm packages. For example, using the npm version of
You're missing defining the dependencies correctly I believe (e.g. set "$" to your jquery declaration):
"plugin": { "exports": "plugin", "depends": [ "jquery:$" ] },...