1

terminal output

I can't install any node.js module without the follwing errors popping up. The error codes refer to the package.json file. Any idea why this would be happening would be hugely appreciated.

gustavohenke
  • 40,997
  • 14
  • 121
  • 129
Joe Austin
  • 557
  • 7
  • 24
  • Not to worry. These are warnings stating that the package you are trying to install must have `repository` field and not `repositories` in package.json. It is a check introduced recently. – user568109 Jul 01 '13 at 16:54

2 Answers2

1

Those are not errors, they are just warnings. Everything is as it should be, though the module owners should probably clean up their package.json files.

Andbdrew
  • 11,788
  • 4
  • 33
  • 37
0

Those are not errors, are warnings.

As I already stated in the same question right here, this is just a new check added as of NPM 1.2.20.

There are so much packages in NPM that still lack the repository field in their package.json file.

Community
  • 1
  • 1
gustavohenke
  • 40,997
  • 14
  • 121
  • 129