Install jQuery 1.9.1 and Browserify-shim
npm install [email protected] --save
npm install browserify-shim --save-dev
Add the following entries in your package.json
"browserify": {
"transform": [ "browserify-shim" ]
},
"browser": {
"jquery": "./node_modules/jquery/jquery.js"
},
"browserify-shim": {
"jquery": "$"
}
And then require jquery in your files.
var $ = require('jquery');