Reputation: 51064
In my `package.json' file, it seems that all the Angular depedencies are prefixed by @. What does this mean? E.g.
"dependencies": {
"@angular/common": "2.0.0-rc.5",
Why not just as below, with no @?
"dependencies": {
"angular/common": "2.0.0-rc.5",
Upvotes: 8
Views: 1820
Reputation: 1755
npm has two types of modules:
Scopes are a way of grouping related packages together, and also affect a few things about the way npm treats the package.
Upvotes: 7