I have problem with bower.json
When I created new project in .net core I have error:
My bower.json:
{
"name": "asp.net",
"private": true,
"dependencies": {
"bootstrap": "3.3.6",
"jquery": "2.2.0",
"jquery-validation": "1.14.0",
"jquery-validation-unobtrusive": "3.2.6"
}
}
I haven been looking for solution but I didn't found any.
I reinstalled bower with:
npm uninstall -g bower
npm install -g bower
In wwwroot/lib I can find jquery and bootstrap but the error still does not disappear.

