npm-package.json5 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. name: 'npm',
  3. publishConfig: {
  4. 'proprietary-attribs': false,
  5. },
  6. description: 'A package manager for node',
  7. keywords: [
  8. 'package manager',
  9. 'modules',
  10. 'install',
  11. 'package.json',
  12. ],
  13. version: '1.1.22',
  14. preferGlobal: true,
  15. config: {
  16. publishtest: false,
  17. },
  18. homepage: 'http://npmjs.org/',
  19. author: 'Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)',
  20. repository: {
  21. type: 'git',
  22. url: 'https://github.com/isaacs/npm',
  23. },
  24. bugs: {
  25. email: 'npm-@googlegroups.com',
  26. url: 'http://github.com/isaacs/npm/issues',
  27. },
  28. directories: {
  29. doc: './doc',
  30. man: './man',
  31. lib: './lib',
  32. bin: './bin',
  33. },
  34. main: './lib/npm.js',
  35. bin: './bin/npm-cli.js',
  36. dependencies: {
  37. semver: '~1.0.14',
  38. ini: '1',
  39. slide: '1',
  40. abbrev: '1',
  41. 'graceful-fs': '~1.1.1',
  42. minimatch: '~0.2',
  43. nopt: '1',
  44. 'node-uuid': '~1.3',
  45. 'proto-list': '1',
  46. rimraf: '2',
  47. request: '~2.9',
  48. which: '1',
  49. tar: '~0.1.12',
  50. fstream: '~0.1.17',
  51. 'block-stream': '*',
  52. inherits: '1',
  53. mkdirp: '0.3',
  54. read: '0',
  55. 'lru-cache': '1',
  56. 'node-gyp': '~0.4.1',
  57. 'fstream-npm': '0 >=0.0.5',
  58. 'uid-number': '0',
  59. archy: '0',
  60. chownr: '0',
  61. },
  62. bundleDependencies: [
  63. 'slide',
  64. 'ini',
  65. 'semver',
  66. 'abbrev',
  67. 'graceful-fs',
  68. 'minimatch',
  69. 'nopt',
  70. 'node-uuid',
  71. 'rimraf',
  72. 'request',
  73. 'proto-list',
  74. 'which',
  75. 'tar',
  76. 'fstream',
  77. 'block-stream',
  78. 'inherits',
  79. 'mkdirp',
  80. 'read',
  81. 'lru-cache',
  82. 'node-gyp',
  83. 'fstream-npm',
  84. 'uid-number',
  85. 'archy',
  86. 'chownr',
  87. ],
  88. devDependencies: {
  89. ronn: 'https://github.com/isaacs/ronnjs/tarball/master',
  90. },
  91. engines: {
  92. node: '0.6 || 0.7 || 0.8',
  93. npm: '1',
  94. },
  95. scripts: {
  96. test: 'node ./test/run.js',
  97. prepublish: 'npm prune; rm -rf node_modules/*/{test,example,bench}*; make -j4 doc',
  98. dumpconf: 'env | grep npm | sort | uniq',
  99. },
  100. licenses: [
  101. {
  102. type: 'MIT +no-false-attribs',
  103. url: 'http://github.com/isaacs/npm/raw/master/LICENSE',
  104. },
  105. ],
  106. }