When I create a new ASP.NET Core 1.0 application I want to use npm instead of bower. So I delete bower.json and additionally delete everything pre-installed in the wwwroot/lib folder.
I add a package.json file to my solution with the following dev dependencies:
"devDependencies": {
"bootstrap": "3.3.7",
"jquery": "3.1.0",
"jquery-validation": "1.15.1",
"jquery-validation-unobtrusive": "3.2.6"
}
However, NPM downloads all of the libraries to a node_modules folder in the root of my project.
I believe this is what Gulp is for. Can someone please tell me how I can use gulp to send the distribution files from node_modules to my wwwroot directory. If there are any tutorials out there that I was unable to find, please link.