Reputation: 617
I wonder if it's about my global package.json or something?
Upvotes: 0
Views: 568
Reputation: 2037
npm install
command will install packages listed in devdependencies as well as dependencies.
You are having 5 modules in devdependencies they will be installed. More then this these 5 modules will also have their own dependencies so they will also be installed.
For example if "mocha
" will have 10 other modules listed in devdependencies/dependencies then this 10 modules will also be installed.
Hope this will help you.
Upvotes: 5
Reputation: 399
when you run npm install, it installs all the packages listed in package.json
Hope it helps!
Upvotes: 0