When I run this:
npm install angular-mocks --save-dev
I get angular-mocks in ./node_modules and a reference to angular mocks in ./package.json
When I run this:
npm install angular-mocks --prefix ./Content/libs
I get angular-mocks in ./Content/libs/node_modules
When I run this:
npm install angular-mocks --save-dev --prefix ./Content/libs
I get angular-mocks in ./Content/libs/nod_modules but no reference to anguar-mocks in ./package.json
Why is npm not saving the reference in package.json when I use --prefix?