embeditor-rails 1.1.1 → 2.0.0.beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1029) hide show
  1. data/README.md +25 -17
  2. data/app/assets/javascripts/embeditor/adapter.js.coffee +21 -2
  3. data/app/assets/javascripts/embeditor/adapters/embedly.js.coffee +4 -40
  4. data/app/assets/javascripts/embeditor/adapters/oembed.js.coffee +37 -2
  5. data/app/assets/javascripts/embeditor/embeditor.js.coffee +16 -4
  6. data/lib/embeditor-rails/version.rb +1 -1
  7. data/lib/node_modules/npm/AUTHORS +158 -0
  8. data/lib/node_modules/npm/CONTRIBUTING.md +9 -0
  9. data/lib/node_modules/npm/LICENSE +235 -0
  10. data/lib/node_modules/npm/Makefile +216 -0
  11. data/lib/node_modules/npm/README.md +241 -0
  12. data/lib/node_modules/npm/bin/node-gyp-bin/node-gyp +2 -0
  13. data/lib/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +1 -0
  14. data/lib/node_modules/npm/bin/npm +13 -0
  15. data/lib/node_modules/npm/bin/npm-cli.js +87 -0
  16. data/lib/node_modules/npm/bin/npm.cmd +6 -0
  17. data/lib/node_modules/npm/bin/read-package-json.js +22 -0
  18. data/lib/node_modules/npm/cli.js +2 -0
  19. data/lib/node_modules/npm/configure +33 -0
  20. data/lib/node_modules/npm/doc/api/npm-bin.md +13 -0
  21. data/lib/node_modules/npm/doc/api/npm-bugs.md +19 -0
  22. data/lib/node_modules/npm/doc/api/npm-commands.md +22 -0
  23. data/lib/node_modules/npm/doc/api/npm-config.md +45 -0
  24. data/lib/node_modules/npm/doc/api/npm-deprecate.md +34 -0
  25. data/lib/node_modules/npm/doc/api/npm-docs.md +19 -0
  26. data/lib/node_modules/npm/doc/api/npm-edit.md +24 -0
  27. data/lib/node_modules/npm/doc/api/npm-explore.md +18 -0
  28. data/lib/node_modules/npm/doc/api/npm-help-search.md +30 -0
  29. data/lib/node_modules/npm/doc/api/npm-init.md +29 -0
  30. data/lib/node_modules/npm/doc/api/npm-install.md +19 -0
  31. data/lib/node_modules/npm/doc/api/npm-link.md +33 -0
  32. data/lib/node_modules/npm/doc/api/npm-load.md +26 -0
  33. data/lib/node_modules/npm/doc/api/npm-ls.md +56 -0
  34. data/lib/node_modules/npm/doc/api/npm-outdated.md +13 -0
  35. data/lib/node_modules/npm/doc/api/npm-owner.md +31 -0
  36. data/lib/node_modules/npm/doc/api/npm-pack.md +19 -0
  37. data/lib/node_modules/npm/doc/api/npm-prefix.md +15 -0
  38. data/lib/node_modules/npm/doc/api/npm-prune.md +17 -0
  39. data/lib/node_modules/npm/doc/api/npm-publish.md +30 -0
  40. data/lib/node_modules/npm/doc/api/npm-rebuild.md +16 -0
  41. data/lib/node_modules/npm/doc/api/npm-repo.md +19 -0
  42. data/lib/node_modules/npm/doc/api/npm-restart.md +22 -0
  43. data/lib/node_modules/npm/doc/api/npm-root.md +15 -0
  44. data/lib/node_modules/npm/doc/api/npm-run-script.md +27 -0
  45. data/lib/node_modules/npm/doc/api/npm-search.md +35 -0
  46. data/lib/node_modules/npm/doc/api/npm-shrinkwrap.md +20 -0
  47. data/lib/node_modules/npm/doc/api/npm-start.md +13 -0
  48. data/lib/node_modules/npm/doc/api/npm-stop.md +13 -0
  49. data/lib/node_modules/npm/doc/api/npm-submodule.md +28 -0
  50. data/lib/node_modules/npm/doc/api/npm-tag.md +23 -0
  51. data/lib/node_modules/npm/doc/api/npm-test.md +16 -0
  52. data/lib/node_modules/npm/doc/api/npm-uninstall.md +16 -0
  53. data/lib/node_modules/npm/doc/api/npm-unpublish.md +20 -0
  54. data/lib/node_modules/npm/doc/api/npm-update.md +11 -0
  55. data/lib/node_modules/npm/doc/api/npm-version.md +18 -0
  56. data/lib/node_modules/npm/doc/api/npm-view.md +93 -0
  57. data/lib/node_modules/npm/doc/api/npm-whoami.md +15 -0
  58. data/lib/node_modules/npm/doc/api/npm.md +116 -0
  59. data/lib/node_modules/npm/doc/cli/npm-adduser.md +38 -0
  60. data/lib/node_modules/npm/doc/cli/npm-bin.md +19 -0
  61. data/lib/node_modules/npm/doc/cli/npm-bugs.md +42 -0
  62. data/lib/node_modules/npm/doc/cli/npm-build.md +22 -0
  63. data/lib/node_modules/npm/doc/cli/npm-bundle.md +14 -0
  64. data/lib/node_modules/npm/doc/cli/npm-cache.md +72 -0
  65. data/lib/node_modules/npm/doc/cli/npm-completion.md +29 -0
  66. data/lib/node_modules/npm/doc/cli/npm-config.md +71 -0
  67. data/lib/node_modules/npm/doc/cli/npm-dedupe.md +58 -0
  68. data/lib/node_modules/npm/doc/cli/npm-deprecate.md +26 -0
  69. data/lib/node_modules/npm/doc/cli/npm-docs.md +44 -0
  70. data/lib/node_modules/npm/doc/cli/npm-edit.md +37 -0
  71. data/lib/node_modules/npm/doc/cli/npm-explore.md +40 -0
  72. data/lib/node_modules/npm/doc/cli/npm-help-search.md +35 -0
  73. data/lib/node_modules/npm/doc/cli/npm-help.md +40 -0
  74. data/lib/node_modules/npm/doc/cli/npm-init.md +25 -0
  75. data/lib/node_modules/npm/doc/cli/npm-install.md +252 -0
  76. data/lib/node_modules/npm/doc/cli/npm-link.md +63 -0
  77. data/lib/node_modules/npm/doc/cli/npm-ls.md +80 -0
  78. data/lib/node_modules/npm/doc/cli/npm-outdated.md +58 -0
  79. data/lib/node_modules/npm/doc/cli/npm-owner.md +33 -0
  80. data/lib/node_modules/npm/doc/cli/npm-pack.md +27 -0
  81. data/lib/node_modules/npm/doc/cli/npm-prefix.md +19 -0
  82. data/lib/node_modules/npm/doc/cli/npm-prune.md +25 -0
  83. data/lib/node_modules/npm/doc/cli/npm-publish.md +30 -0
  84. data/lib/node_modules/npm/doc/cli/npm-rebuild.md +21 -0
  85. data/lib/node_modules/npm/doc/cli/npm-repo.md +28 -0
  86. data/lib/node_modules/npm/doc/cli/npm-restart.md +22 -0
  87. data/lib/node_modules/npm/doc/cli/npm-rm.md +23 -0
  88. data/lib/node_modules/npm/doc/cli/npm-root.md +19 -0
  89. data/lib/node_modules/npm/doc/cli/npm-run-script.md +21 -0
  90. data/lib/node_modules/npm/doc/cli/npm-search.md +36 -0
  91. data/lib/node_modules/npm/doc/cli/npm-shrinkwrap.md +185 -0
  92. data/lib/node_modules/npm/doc/cli/npm-star.md +22 -0
  93. data/lib/node_modules/npm/doc/cli/npm-stars.md +22 -0
  94. data/lib/node_modules/npm/doc/cli/npm-start.md +18 -0
  95. data/lib/node_modules/npm/doc/cli/npm-stop.md +18 -0
  96. data/lib/node_modules/npm/doc/cli/npm-submodule.md +28 -0
  97. data/lib/node_modules/npm/doc/cli/npm-tag.md +34 -0
  98. data/lib/node_modules/npm/doc/cli/npm-test.md +22 -0
  99. data/lib/node_modules/npm/doc/cli/npm-uninstall.md +21 -0
  100. data/lib/node_modules/npm/doc/cli/npm-unpublish.md +32 -0
  101. data/lib/node_modules/npm/doc/cli/npm-update.md +24 -0
  102. data/lib/node_modules/npm/doc/cli/npm-version.md +45 -0
  103. data/lib/node_modules/npm/doc/cli/npm-view.md +90 -0
  104. data/lib/node_modules/npm/doc/cli/npm-whoami.md +17 -0
  105. data/lib/node_modules/npm/doc/cli/npm.md +153 -0
  106. data/lib/node_modules/npm/doc/files/npm-folders.md +211 -0
  107. data/lib/node_modules/npm/doc/files/npmrc.md +59 -0
  108. data/lib/node_modules/npm/doc/files/package.json.md +576 -0
  109. data/lib/node_modules/npm/doc/misc/npm-coding-style.md +181 -0
  110. data/lib/node_modules/npm/doc/misc/npm-config.md +820 -0
  111. data/lib/node_modules/npm/doc/misc/npm-developers.md +207 -0
  112. data/lib/node_modules/npm/doc/misc/npm-disputes.md +99 -0
  113. data/lib/node_modules/npm/doc/misc/npm-faq.md +364 -0
  114. data/lib/node_modules/npm/doc/misc/npm-index.md +411 -0
  115. data/lib/node_modules/npm/doc/misc/npm-registry.md +69 -0
  116. data/lib/node_modules/npm/doc/misc/npm-scripts.md +245 -0
  117. data/lib/node_modules/npm/doc/misc/removing-npm.md +54 -0
  118. data/lib/node_modules/npm/doc/misc/semver.md +111 -0
  119. data/lib/node_modules/npm/html/doc/README.html +276 -0
  120. data/lib/node_modules/npm/html/doc/api/npm-bin.html +53 -0
  121. data/lib/node_modules/npm/html/doc/api/npm-bugs.html +59 -0
  122. data/lib/node_modules/npm/html/doc/api/npm-commands.html +62 -0
  123. data/lib/node_modules/npm/html/doc/api/npm-config.html +67 -0
  124. data/lib/node_modules/npm/html/doc/api/npm-deprecate.html +66 -0
  125. data/lib/node_modules/npm/html/doc/api/npm-docs.html +59 -0
  126. data/lib/node_modules/npm/html/doc/api/npm-edit.html +64 -0
  127. data/lib/node_modules/npm/html/doc/api/npm-explore.html +58 -0
  128. data/lib/node_modules/npm/html/doc/api/npm-help-search.html +66 -0
  129. data/lib/node_modules/npm/html/doc/api/npm-init.html +69 -0
  130. data/lib/node_modules/npm/html/doc/api/npm-install.html +59 -0
  131. data/lib/node_modules/npm/html/doc/api/npm-link.html +73 -0
  132. data/lib/node_modules/npm/html/doc/api/npm-load.html +66 -0
  133. data/lib/node_modules/npm/html/doc/api/npm-ls.html +93 -0
  134. data/lib/node_modules/npm/html/doc/api/npm-outdated.html +53 -0
  135. data/lib/node_modules/npm/html/doc/api/npm-owner.html +68 -0
  136. data/lib/node_modules/npm/html/doc/api/npm-pack.html +59 -0
  137. data/lib/node_modules/npm/html/doc/api/npm-prefix.html +55 -0
  138. data/lib/node_modules/npm/html/doc/api/npm-prune.html +57 -0
  139. data/lib/node_modules/npm/html/doc/api/npm-publish.html +66 -0
  140. data/lib/node_modules/npm/html/doc/api/npm-rebuild.html +56 -0
  141. data/lib/node_modules/npm/html/doc/api/npm-repo.html +59 -0
  142. data/lib/node_modules/npm/html/doc/api/npm-restart.html +61 -0
  143. data/lib/node_modules/npm/html/doc/api/npm-root.html +55 -0
  144. data/lib/node_modules/npm/html/doc/api/npm-run-script.html +63 -0
  145. data/lib/node_modules/npm/html/doc/api/npm-search.html +66 -0
  146. data/lib/node_modules/npm/html/doc/api/npm-shrinkwrap.html +60 -0
  147. data/lib/node_modules/npm/html/doc/api/npm-start.html +53 -0
  148. data/lib/node_modules/npm/html/doc/api/npm-stop.html +53 -0
  149. data/lib/node_modules/npm/html/doc/api/npm-submodule.html +67 -0
  150. data/lib/node_modules/npm/html/doc/api/npm-tag.html +63 -0
  151. data/lib/node_modules/npm/html/doc/api/npm-test.html +56 -0
  152. data/lib/node_modules/npm/html/doc/api/npm-uninstall.html +56 -0
  153. data/lib/node_modules/npm/html/doc/api/npm-unpublish.html +60 -0
  154. data/lib/node_modules/npm/html/doc/api/npm-update.html +52 -0
  155. data/lib/node_modules/npm/html/doc/api/npm-version.html +58 -0
  156. data/lib/node_modules/npm/html/doc/api/npm-view.html +133 -0
  157. data/lib/node_modules/npm/html/doc/api/npm-whoami.html +55 -0
  158. data/lib/node_modules/npm/html/doc/api/npm.html +126 -0
  159. data/lib/node_modules/npm/html/doc/cli/npm-adduser.html +73 -0
  160. data/lib/node_modules/npm/html/doc/cli/npm-bin.html +54 -0
  161. data/lib/node_modules/npm/html/doc/cli/npm-bugs.html +72 -0
  162. data/lib/node_modules/npm/html/doc/cli/npm-build.html +59 -0
  163. data/lib/node_modules/npm/html/doc/cli/npm-bundle.html +54 -0
  164. data/lib/node_modules/npm/html/doc/cli/npm-cache.html +100 -0
  165. data/lib/node_modules/npm/html/doc/cli/npm-completion.html +67 -0
  166. data/lib/node_modules/npm/html/doc/cli/npm-config.html +107 -0
  167. data/lib/node_modules/npm/html/doc/cli/npm-dedupe.html +96 -0
  168. data/lib/node_modules/npm/html/doc/cli/npm-deprecate.html +65 -0
  169. data/lib/node_modules/npm/html/doc/cli/npm-docs.html +75 -0
  170. data/lib/node_modules/npm/html/doc/cli/npm-edit.html +71 -0
  171. data/lib/node_modules/npm/html/doc/cli/npm-explore.html +74 -0
  172. data/lib/node_modules/npm/html/doc/cli/npm-help-search.html +72 -0
  173. data/lib/node_modules/npm/html/doc/cli/npm-help.html +70 -0
  174. data/lib/node_modules/npm/html/doc/cli/npm-init.html +63 -0
  175. data/lib/node_modules/npm/html/doc/cli/npm-install.html +183 -0
  176. data/lib/node_modules/npm/html/doc/cli/npm-link.html +96 -0
  177. data/lib/node_modules/npm/html/doc/cli/npm-ls.html +108 -0
  178. data/lib/node_modules/npm/html/doc/cli/npm-outdated.html +92 -0
  179. data/lib/node_modules/npm/html/doc/cli/npm-owner.html +68 -0
  180. data/lib/node_modules/npm/html/doc/cli/npm-pack.html +63 -0
  181. data/lib/node_modules/npm/html/doc/cli/npm-prefix.html +54 -0
  182. data/lib/node_modules/npm/html/doc/cli/npm-prune.html +63 -0
  183. data/lib/node_modules/npm/html/doc/cli/npm-publish.html +63 -0
  184. data/lib/node_modules/npm/html/doc/cli/npm-rebuild.html +60 -0
  185. data/lib/node_modules/npm/html/doc/cli/npm-repo.html +66 -0
  186. data/lib/node_modules/npm/html/doc/cli/npm-restart.html +58 -0
  187. data/lib/node_modules/npm/html/doc/cli/npm-rm.html +58 -0
  188. data/lib/node_modules/npm/html/doc/cli/npm-root.html +54 -0
  189. data/lib/node_modules/npm/html/doc/cli/npm-run-script.html +57 -0
  190. data/lib/node_modules/npm/html/doc/cli/npm-search.html +71 -0
  191. data/lib/node_modules/npm/html/doc/cli/npm-shrinkwrap.html +217 -0
  192. data/lib/node_modules/npm/html/doc/cli/npm-star.html +60 -0
  193. data/lib/node_modules/npm/html/doc/cli/npm-stars.html +59 -0
  194. data/lib/node_modules/npm/html/doc/cli/npm-start.html +54 -0
  195. data/lib/node_modules/npm/html/doc/cli/npm-stop.html +54 -0
  196. data/lib/node_modules/npm/html/doc/cli/npm-submodule.html +67 -0
  197. data/lib/node_modules/npm/html/doc/cli/npm-tag.html +68 -0
  198. data/lib/node_modules/npm/html/doc/cli/npm-test.html +58 -0
  199. data/lib/node_modules/npm/html/doc/cli/npm-uninstall.html +56 -0
  200. data/lib/node_modules/npm/html/doc/cli/npm-unpublish.html +68 -0
  201. data/lib/node_modules/npm/html/doc/cli/npm-update.html +60 -0
  202. data/lib/node_modules/npm/html/doc/cli/npm-version.html +83 -0
  203. data/lib/node_modules/npm/html/doc/cli/npm-view.html +125 -0
  204. data/lib/node_modules/npm/html/doc/cli/npm-whoami.html +54 -0
  205. data/lib/node_modules/npm/html/doc/cli/npm.html +165 -0
  206. data/lib/node_modules/npm/html/doc/files/npm-folders.html +239 -0
  207. data/lib/node_modules/npm/html/doc/files/npm-global.html +239 -0
  208. data/lib/node_modules/npm/html/doc/files/npm-json.html +580 -0
  209. data/lib/node_modules/npm/html/doc/files/npmrc.html +93 -0
  210. data/lib/node_modules/npm/html/doc/files/package.json.html +580 -0
  211. data/lib/node_modules/npm/html/doc/index.html +450 -0
  212. data/lib/node_modules/npm/html/doc/misc/npm-coding-style.html +216 -0
  213. data/lib/node_modules/npm/html/doc/misc/npm-config.html +744 -0
  214. data/lib/node_modules/npm/html/doc/misc/npm-developers.html +208 -0
  215. data/lib/node_modules/npm/html/doc/misc/npm-disputes.html +126 -0
  216. data/lib/node_modules/npm/html/doc/misc/npm-faq.html +382 -0
  217. data/lib/node_modules/npm/html/doc/misc/npm-index.html +450 -0
  218. data/lib/node_modules/npm/html/doc/misc/npm-registry.html +105 -0
  219. data/lib/node_modules/npm/html/doc/misc/npm-scripts.html +257 -0
  220. data/lib/node_modules/npm/html/doc/misc/removing-npm.html +92 -0
  221. data/lib/node_modules/npm/html/doc/misc/semver.html +128 -0
  222. data/lib/node_modules/npm/html/docfoot-script.html +31 -0
  223. data/lib/node_modules/npm/html/docfoot.html +2 -0
  224. data/lib/node_modules/npm/html/dochead.html +8 -0
  225. data/lib/node_modules/npm/html/favicon.ico +0 -0
  226. data/lib/node_modules/npm/html/index.html +95 -0
  227. data/lib/node_modules/npm/html/static/style.css +329 -0
  228. data/lib/node_modules/npm/lib/adduser.js +138 -0
  229. data/lib/node_modules/npm/lib/bin.js +18 -0
  230. data/lib/node_modules/npm/lib/bugs.js +61 -0
  231. data/lib/node_modules/npm/lib/build.js +228 -0
  232. data/lib/node_modules/npm/lib/cache.js +1318 -0
  233. data/lib/node_modules/npm/lib/completion.js +253 -0
  234. data/lib/node_modules/npm/lib/config.js +285 -0
  235. data/lib/node_modules/npm/lib/dedupe.js +357 -0
  236. data/lib/node_modules/npm/lib/deprecate.js +47 -0
  237. data/lib/node_modules/npm/lib/docs.js +62 -0
  238. data/lib/node_modules/npm/lib/edit.js +32 -0
  239. data/lib/node_modules/npm/lib/explore.js +36 -0
  240. data/lib/node_modules/npm/lib/faq.js +8 -0
  241. data/lib/node_modules/npm/lib/get.js +12 -0
  242. data/lib/node_modules/npm/lib/help-search.js +218 -0
  243. data/lib/node_modules/npm/lib/help.js +231 -0
  244. data/lib/node_modules/npm/lib/init.js +36 -0
  245. data/lib/node_modules/npm/lib/install.js +979 -0
  246. data/lib/node_modules/npm/lib/link.js +173 -0
  247. data/lib/node_modules/npm/lib/ls.js +357 -0
  248. data/lib/node_modules/npm/lib/npm.js +528 -0
  249. data/lib/node_modules/npm/lib/outdated.js +303 -0
  250. data/lib/node_modules/npm/lib/owner.js +205 -0
  251. data/lib/node_modules/npm/lib/pack.js +65 -0
  252. data/lib/node_modules/npm/lib/prefix.js +11 -0
  253. data/lib/node_modules/npm/lib/prune.js +53 -0
  254. data/lib/node_modules/npm/lib/publish.js +118 -0
  255. data/lib/node_modules/npm/lib/rebuild.js +75 -0
  256. data/lib/node_modules/npm/lib/repo.js +54 -0
  257. data/lib/node_modules/npm/lib/restart.js +1 -0
  258. data/lib/node_modules/npm/lib/root.js +11 -0
  259. data/lib/node_modules/npm/lib/run-script.js +102 -0
  260. data/lib/node_modules/npm/lib/search.js +265 -0
  261. data/lib/node_modules/npm/lib/set.js +13 -0
  262. data/lib/node_modules/npm/lib/shrinkwrap.js +86 -0
  263. data/lib/node_modules/npm/lib/star.js +33 -0
  264. data/lib/node_modules/npm/lib/stars.js +27 -0
  265. data/lib/node_modules/npm/lib/start.js +1 -0
  266. data/lib/node_modules/npm/lib/stop.js +1 -0
  267. data/lib/node_modules/npm/lib/submodule.js +119 -0
  268. data/lib/node_modules/npm/lib/substack.js +20 -0
  269. data/lib/node_modules/npm/lib/tag.js +18 -0
  270. data/lib/node_modules/npm/lib/test.js +14 -0
  271. data/lib/node_modules/npm/lib/unbuild.js +112 -0
  272. data/lib/node_modules/npm/lib/uninstall.js +127 -0
  273. data/lib/node_modules/npm/lib/unpublish.js +83 -0
  274. data/lib/node_modules/npm/lib/update.js +43 -0
  275. data/lib/node_modules/npm/lib/utils/completion.sh +54 -0
  276. data/lib/node_modules/npm/lib/utils/completion/file-completion.js +26 -0
  277. data/lib/node_modules/npm/lib/utils/completion/installed-deep.js +50 -0
  278. data/lib/node_modules/npm/lib/utils/completion/installed-shallow.js +79 -0
  279. data/lib/node_modules/npm/lib/utils/error-handler.js +343 -0
  280. data/lib/node_modules/npm/lib/utils/fetch.js +93 -0
  281. data/lib/node_modules/npm/lib/utils/find-prefix.js +57 -0
  282. data/lib/node_modules/npm/lib/utils/gently-rm.js +61 -0
  283. data/lib/node_modules/npm/lib/utils/is-git-url.js +13 -0
  284. data/lib/node_modules/npm/lib/utils/lifecycle.js +360 -0
  285. data/lib/node_modules/npm/lib/utils/link.js +39 -0
  286. data/lib/node_modules/npm/lib/utils/tar.js +323 -0
  287. data/lib/node_modules/npm/lib/version.js +120 -0
  288. data/lib/node_modules/npm/lib/view.js +246 -0
  289. data/lib/node_modules/npm/lib/visnup.js +42 -0
  290. data/lib/node_modules/npm/lib/whoami.js +13 -0
  291. data/lib/node_modules/npm/lib/xmas.js +56 -0
  292. data/lib/node_modules/npm/make.bat +3 -0
  293. data/lib/node_modules/npm/man/man1/npm-README.1 +328 -0
  294. data/lib/node_modules/npm/man/man1/npm-adduser.1 +63 -0
  295. data/lib/node_modules/npm/man/man1/npm-bin.1 +40 -0
  296. data/lib/node_modules/npm/man/man1/npm-bugs.1 +78 -0
  297. data/lib/node_modules/npm/man/man1/npm-build.1 +43 -0
  298. data/lib/node_modules/npm/man/man1/npm-bundle.1 +23 -0
  299. data/lib/node_modules/npm/man/man1/npm-cache.1 +104 -0
  300. data/lib/node_modules/npm/man/man1/npm-completion.1 +47 -0
  301. data/lib/node_modules/npm/man/man1/npm-config.1 +113 -0
  302. data/lib/node_modules/npm/man/man1/npm-dedupe.1 +96 -0
  303. data/lib/node_modules/npm/man/man1/npm-deprecate.1 +48 -0
  304. data/lib/node_modules/npm/man/man1/npm-docs.1 +78 -0
  305. data/lib/node_modules/npm/man/man1/npm-edit.1 +66 -0
  306. data/lib/node_modules/npm/man/man1/npm-explore.1 +76 -0
  307. data/lib/node_modules/npm/man/man1/npm-help-search.1 +59 -0
  308. data/lib/node_modules/npm/man/man1/npm-help.1 +77 -0
  309. data/lib/node_modules/npm/man/man1/npm-init.1 +43 -0
  310. data/lib/node_modules/npm/man/man1/npm-install.1 +434 -0
  311. data/lib/node_modules/npm/man/man1/npm-link.1 +119 -0
  312. data/lib/node_modules/npm/man/man1/npm-ls.1 +146 -0
  313. data/lib/node_modules/npm/man/man1/npm-outdated.1 +102 -0
  314. data/lib/node_modules/npm/man/man1/npm-owner.1 +58 -0
  315. data/lib/node_modules/npm/man/man1/npm-pack.1 +48 -0
  316. data/lib/node_modules/npm/man/man1/npm-prefix.1 +40 -0
  317. data/lib/node_modules/npm/man/man1/npm-prune.1 +42 -0
  318. data/lib/node_modules/npm/man/man1/npm-publish.1 +53 -0
  319. data/lib/node_modules/npm/man/man1/npm-rebuild.1 +37 -0
  320. data/lib/node_modules/npm/man/man1/npm-repo.1 +47 -0
  321. data/lib/node_modules/npm/man/man1/npm-restart.1 +42 -0
  322. data/lib/node_modules/npm/man/man1/npm-rm.1 +44 -0
  323. data/lib/node_modules/npm/man/man1/npm-root.1 +40 -0
  324. data/lib/node_modules/npm/man/man1/npm-run-script.1 +41 -0
  325. data/lib/node_modules/npm/man/man1/npm-search.1 +62 -0
  326. data/lib/node_modules/npm/man/man1/npm-shrinkwrap.1 +275 -0
  327. data/lib/node_modules/npm/man/man1/npm-star.1 +39 -0
  328. data/lib/node_modules/npm/man/man1/npm-stars.1 +40 -0
  329. data/lib/node_modules/npm/man/man1/npm-start.1 +37 -0
  330. data/lib/node_modules/npm/man/man1/npm-stop.1 +37 -0
  331. data/lib/node_modules/npm/man/man1/npm-submodule.1 +42 -0
  332. data/lib/node_modules/npm/man/man1/npm-tag.1 +74 -0
  333. data/lib/node_modules/npm/man/man1/npm-test.1 +42 -0
  334. data/lib/node_modules/npm/man/man1/npm-uninstall.1 +42 -0
  335. data/lib/node_modules/npm/man/man1/npm-unpublish.1 +53 -0
  336. data/lib/node_modules/npm/man/man1/npm-update.1 +45 -0
  337. data/lib/node_modules/npm/man/man1/npm-version.1 +75 -0
  338. data/lib/node_modules/npm/man/man1/npm-view.1 +186 -0
  339. data/lib/node_modules/npm/man/man1/npm-whoami.1 +34 -0
  340. data/lib/node_modules/npm/man/man1/npm.1 +230 -0
  341. data/lib/node_modules/npm/man/man3/npm-bin.3 +21 -0
  342. data/lib/node_modules/npm/man/man3/npm-bugs.3 +28 -0
  343. data/lib/node_modules/npm/man/man3/npm-commands.3 +35 -0
  344. data/lib/node_modules/npm/man/man3/npm-config.3 +69 -0
  345. data/lib/node_modules/npm/man/man3/npm-deprecate.3 +57 -0
  346. data/lib/node_modules/npm/man/man3/npm-docs.3 +28 -0
  347. data/lib/node_modules/npm/man/man3/npm-edit.3 +35 -0
  348. data/lib/node_modules/npm/man/man3/npm-explore.3 +28 -0
  349. data/lib/node_modules/npm/man/man3/npm-help-search.3 +51 -0
  350. data/lib/node_modules/npm/man/man3/npm-init.3 +39 -0
  351. data/lib/node_modules/npm/man/man3/npm-install.3 +29 -0
  352. data/lib/node_modules/npm/man/man3/npm-link.3 +53 -0
  353. data/lib/node_modules/npm/man/man3/npm-load.3 +44 -0
  354. data/lib/node_modules/npm/man/man3/npm-ls.3 +86 -0
  355. data/lib/node_modules/npm/man/man3/npm-outdated.3 +21 -0
  356. data/lib/node_modules/npm/man/man3/npm-owner.3 +52 -0
  357. data/lib/node_modules/npm/man/man3/npm-pack.3 +28 -0
  358. data/lib/node_modules/npm/man/man3/npm-prefix.3 +24 -0
  359. data/lib/node_modules/npm/man/man3/npm-prune.3 +27 -0
  360. data/lib/node_modules/npm/man/man3/npm-publish.3 +51 -0
  361. data/lib/node_modules/npm/man/man3/npm-rebuild.3 +22 -0
  362. data/lib/node_modules/npm/man/man3/npm-repo.3 +28 -0
  363. data/lib/node_modules/npm/man/man3/npm-restart.3 +37 -0
  364. data/lib/node_modules/npm/man/man3/npm-root.3 +24 -0
  365. data/lib/node_modules/npm/man/man3/npm-run-script.3 +48 -0
  366. data/lib/node_modules/npm/man/man3/npm-search.3 +64 -0
  367. data/lib/node_modules/npm/man/man3/npm-shrinkwrap.3 +30 -0
  368. data/lib/node_modules/npm/man/man3/npm-start.3 +21 -0
  369. data/lib/node_modules/npm/man/man3/npm-stop.3 +21 -0
  370. data/lib/node_modules/npm/man/man3/npm-submodule.3 +42 -0
  371. data/lib/node_modules/npm/man/man3/npm-tag.3 +31 -0
  372. data/lib/node_modules/npm/man/man3/npm-test.3 +25 -0
  373. data/lib/node_modules/npm/man/man3/npm-uninstall.3 +25 -0
  374. data/lib/node_modules/npm/man/man3/npm-unpublish.3 +30 -0
  375. data/lib/node_modules/npm/man/man3/npm-update.3 +18 -0
  376. data/lib/node_modules/npm/man/man3/npm-version.3 +27 -0
  377. data/lib/node_modules/npm/man/man3/npm-view.3 +176 -0
  378. data/lib/node_modules/npm/man/man3/npm-whoami.3 +24 -0
  379. data/lib/node_modules/npm/man/man3/npm.3 +162 -0
  380. data/lib/node_modules/npm/man/man5/npm-folders.5 +264 -0
  381. data/lib/node_modules/npm/man/man5/npm-global.5 +264 -0
  382. data/lib/node_modules/npm/man/man5/npm-json.5 +807 -0
  383. data/lib/node_modules/npm/man/man5/npmrc.5 +89 -0
  384. data/lib/node_modules/npm/man/man5/package.json.5 +807 -0
  385. data/lib/node_modules/npm/man/man7/npm-coding-style.7 +254 -0
  386. data/lib/node_modules/npm/man/man7/npm-config.7 +1445 -0
  387. data/lib/node_modules/npm/man/man7/npm-developers.7 +335 -0
  388. data/lib/node_modules/npm/man/man7/npm-disputes.7 +146 -0
  389. data/lib/node_modules/npm/man/man7/npm-faq.7 +479 -0
  390. data/lib/node_modules/npm/man/man7/npm-index.7 +307 -0
  391. data/lib/node_modules/npm/man/man7/npm-registry.7 +82 -0
  392. data/lib/node_modules/npm/man/man7/npm-scripts.7 +354 -0
  393. data/lib/node_modules/npm/man/man7/removing-npm.7 +107 -0
  394. data/lib/node_modules/npm/man/man7/semver.7 +172 -0
  395. data/lib/node_modules/npm/node_modules/abbrev/LICENSE +23 -0
  396. data/lib/node_modules/npm/node_modules/abbrev/README.md +23 -0
  397. data/lib/node_modules/npm/node_modules/abbrev/lib/abbrev.js +111 -0
  398. data/lib/node_modules/npm/node_modules/abbrev/package.json +25 -0
  399. data/lib/node_modules/npm/node_modules/ansi/README.md +91 -0
  400. data/lib/node_modules/npm/node_modules/ansi/color-spaces.pl +67 -0
  401. data/lib/node_modules/npm/node_modules/ansi/examples/beep/index.js +16 -0
  402. data/lib/node_modules/npm/node_modules/ansi/examples/clear/index.js +15 -0
  403. data/lib/node_modules/npm/node_modules/ansi/examples/cursorPosition.js +32 -0
  404. data/lib/node_modules/npm/node_modules/ansi/examples/progress/index.js +87 -0
  405. data/lib/node_modules/npm/node_modules/ansi/examples/starwars.js +46 -0
  406. data/lib/node_modules/npm/node_modules/ansi/lib/ansi.js +405 -0
  407. data/lib/node_modules/npm/node_modules/ansi/lib/newlines.js +71 -0
  408. data/lib/node_modules/npm/node_modules/ansi/package.json +50 -0
  409. data/lib/node_modules/npm/node_modules/ansicolors/LICENSE +23 -0
  410. data/lib/node_modules/npm/node_modules/ansicolors/README.md +62 -0
  411. data/lib/node_modules/npm/node_modules/ansicolors/ansicolors.js +65 -0
  412. data/lib/node_modules/npm/node_modules/ansicolors/package.json +34 -0
  413. data/lib/node_modules/npm/node_modules/ansistyles/LICENSE +23 -0
  414. data/lib/node_modules/npm/node_modules/ansistyles/README.md +71 -0
  415. data/lib/node_modules/npm/node_modules/ansistyles/ansistyles.js +38 -0
  416. data/lib/node_modules/npm/node_modules/ansistyles/package.json +38 -0
  417. data/lib/node_modules/npm/node_modules/archy/README.markdown +92 -0
  418. data/lib/node_modules/npm/node_modules/archy/index.js +35 -0
  419. data/lib/node_modules/npm/node_modules/archy/package.json +52 -0
  420. data/lib/node_modules/npm/node_modules/block-stream/LICENCE +25 -0
  421. data/lib/node_modules/npm/node_modules/block-stream/README.md +14 -0
  422. data/lib/node_modules/npm/node_modules/block-stream/bench/block-stream-pause.js +70 -0
  423. data/lib/node_modules/npm/node_modules/block-stream/bench/block-stream.js +68 -0
  424. data/lib/node_modules/npm/node_modules/block-stream/bench/dropper-pause.js +70 -0
  425. data/lib/node_modules/npm/node_modules/block-stream/bench/dropper.js +68 -0
  426. data/lib/node_modules/npm/node_modules/block-stream/block-stream.js +209 -0
  427. data/lib/node_modules/npm/node_modules/block-stream/package.json +35 -0
  428. data/lib/node_modules/npm/node_modules/child-process-close/README.md +45 -0
  429. data/lib/node_modules/npm/node_modules/child-process-close/index.js +48 -0
  430. data/lib/node_modules/npm/node_modules/child-process-close/package.json +37 -0
  431. data/lib/node_modules/npm/node_modules/chmodr/LICENSE +27 -0
  432. data/lib/node_modules/npm/node_modules/chmodr/README.md +3 -0
  433. data/lib/node_modules/npm/node_modules/chmodr/chmodr.js +54 -0
  434. data/lib/node_modules/npm/node_modules/chmodr/package.json +28 -0
  435. data/lib/node_modules/npm/node_modules/chownr/LICENCE +25 -0
  436. data/lib/node_modules/npm/node_modules/chownr/README.md +3 -0
  437. data/lib/node_modules/npm/node_modules/chownr/chownr.js +41 -0
  438. data/lib/node_modules/npm/node_modules/chownr/package.json +42 -0
  439. data/lib/node_modules/npm/node_modules/cmd-shim/LICENSE +27 -0
  440. data/lib/node_modules/npm/node_modules/cmd-shim/README.md +42 -0
  441. data/lib/node_modules/npm/node_modules/cmd-shim/index.js +180 -0
  442. data/lib/node_modules/npm/node_modules/cmd-shim/package.json +35 -0
  443. data/lib/node_modules/npm/node_modules/columnify/Readme.md +189 -0
  444. data/lib/node_modules/npm/node_modules/columnify/index.js +210 -0
  445. data/lib/node_modules/npm/node_modules/columnify/package.json +42 -0
  446. data/lib/node_modules/npm/node_modules/columnify/utils.js +76 -0
  447. data/lib/node_modules/npm/node_modules/editor/LICENSE +18 -0
  448. data/lib/node_modules/npm/node_modules/editor/README.markdown +54 -0
  449. data/lib/node_modules/npm/node_modules/editor/example/beep.json +5 -0
  450. data/lib/node_modules/npm/node_modules/editor/example/edit.js +4 -0
  451. data/lib/node_modules/npm/node_modules/editor/index.js +26 -0
  452. data/lib/node_modules/npm/node_modules/editor/package.json +43 -0
  453. data/lib/node_modules/npm/node_modules/fstream-npm/LICENCE +25 -0
  454. data/lib/node_modules/npm/node_modules/fstream-npm/README.md +18 -0
  455. data/lib/node_modules/npm/node_modules/fstream-npm/example/bundle.js +13 -0
  456. data/lib/node_modules/npm/node_modules/fstream-npm/example/dir-tar.js +19 -0
  457. data/lib/node_modules/npm/node_modules/fstream-npm/example/dir.js +25 -0
  458. data/lib/node_modules/npm/node_modules/fstream-npm/example/example.js +12 -0
  459. data/lib/node_modules/npm/node_modules/fstream-npm/example/ig-tar.js +19 -0
  460. data/lib/node_modules/npm/node_modules/fstream-npm/example/tar.js +25 -0
  461. data/lib/node_modules/npm/node_modules/fstream-npm/fstream-npm.js +323 -0
  462. data/lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/LICENSE +27 -0
  463. data/lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/README.md +22 -0
  464. data/lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/example/basic.js +13 -0
  465. data/lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js +275 -0
  466. data/lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/package.json +40 -0
  467. data/lib/node_modules/npm/node_modules/fstream-npm/package.json +27 -0
  468. data/lib/node_modules/npm/node_modules/fstream/LICENSE +27 -0
  469. data/lib/node_modules/npm/node_modules/fstream/README.md +76 -0
  470. data/lib/node_modules/npm/node_modules/fstream/examples/filter-pipe.js +131 -0
  471. data/lib/node_modules/npm/node_modules/fstream/examples/pipe.js +115 -0
  472. data/lib/node_modules/npm/node_modules/fstream/examples/reader.js +54 -0
  473. data/lib/node_modules/npm/node_modules/fstream/examples/symlink-write.js +24 -0
  474. data/lib/node_modules/npm/node_modules/fstream/fstream.js +31 -0
  475. data/lib/node_modules/npm/node_modules/fstream/lib/abstract.js +85 -0
  476. data/lib/node_modules/npm/node_modules/fstream/lib/collect.js +67 -0
  477. data/lib/node_modules/npm/node_modules/fstream/lib/dir-reader.js +251 -0
  478. data/lib/node_modules/npm/node_modules/fstream/lib/dir-writer.js +171 -0
  479. data/lib/node_modules/npm/node_modules/fstream/lib/file-reader.js +147 -0
  480. data/lib/node_modules/npm/node_modules/fstream/lib/file-writer.js +100 -0
  481. data/lib/node_modules/npm/node_modules/fstream/lib/get-type.js +32 -0
  482. data/lib/node_modules/npm/node_modules/fstream/lib/link-reader.js +54 -0
  483. data/lib/node_modules/npm/node_modules/fstream/lib/link-writer.js +95 -0
  484. data/lib/node_modules/npm/node_modules/fstream/lib/proxy-reader.js +93 -0
  485. data/lib/node_modules/npm/node_modules/fstream/lib/proxy-writer.js +109 -0
  486. data/lib/node_modules/npm/node_modules/fstream/lib/reader.js +260 -0
  487. data/lib/node_modules/npm/node_modules/fstream/lib/socket-reader.js +38 -0
  488. data/lib/node_modules/npm/node_modules/fstream/lib/writer.js +389 -0
  489. data/lib/node_modules/npm/node_modules/fstream/package.json +43 -0
  490. data/lib/node_modules/npm/node_modules/github-url-from-git/History.md +10 -0
  491. data/lib/node_modules/npm/node_modules/github-url-from-git/Makefile +5 -0
  492. data/lib/node_modules/npm/node_modules/github-url-from-git/Readme.md +41 -0
  493. data/lib/node_modules/npm/node_modules/github-url-from-git/index.js +12 -0
  494. data/lib/node_modules/npm/node_modules/github-url-from-git/package.json +31 -0
  495. data/lib/node_modules/npm/node_modules/github-url-from-git/test.js +40 -0
  496. data/lib/node_modules/npm/node_modules/github-url-from-username-repo/LICENSE +27 -0
  497. data/lib/node_modules/npm/node_modules/github-url-from-username-repo/README.md +14 -0
  498. data/lib/node_modules/npm/node_modules/github-url-from-username-repo/index.js +9 -0
  499. data/lib/node_modules/npm/node_modules/github-url-from-username-repo/package.json +33 -0
  500. data/lib/node_modules/npm/node_modules/glob/LICENSE +27 -0
  501. data/lib/node_modules/npm/node_modules/glob/README.md +250 -0
  502. data/lib/node_modules/npm/node_modules/glob/examples/g.js +9 -0
  503. data/lib/node_modules/npm/node_modules/glob/examples/usr-local.js +9 -0
  504. data/lib/node_modules/npm/node_modules/glob/glob.js +680 -0
  505. data/lib/node_modules/npm/node_modules/glob/package.json +39 -0
  506. data/lib/node_modules/npm/node_modules/graceful-fs/LICENSE +27 -0
  507. data/lib/node_modules/npm/node_modules/graceful-fs/README.md +26 -0
  508. data/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +161 -0
  509. data/lib/node_modules/npm/node_modules/graceful-fs/package.json +48 -0
  510. data/lib/node_modules/npm/node_modules/graceful-fs/polyfills.js +228 -0
  511. data/lib/node_modules/npm/node_modules/inherits/LICENSE +16 -0
  512. data/lib/node_modules/npm/node_modules/inherits/README.md +42 -0
  513. data/lib/node_modules/npm/node_modules/inherits/inherits.js +1 -0
  514. data/lib/node_modules/npm/node_modules/inherits/inherits_browser.js +23 -0
  515. data/lib/node_modules/npm/node_modules/inherits/package.json +32 -0
  516. data/lib/node_modules/npm/node_modules/inherits/test.js +25 -0
  517. data/lib/node_modules/npm/node_modules/ini/LICENSE +23 -0
  518. data/lib/node_modules/npm/node_modules/ini/README.md +79 -0
  519. data/lib/node_modules/npm/node_modules/ini/ini.js +166 -0
  520. data/lib/node_modules/npm/node_modules/ini/package.json +29 -0
  521. data/lib/node_modules/npm/node_modules/init-package-json/README.md +43 -0
  522. data/lib/node_modules/npm/node_modules/init-package-json/default-input.js +181 -0
  523. data/lib/node_modules/npm/node_modules/init-package-json/example/example-basic.js +8 -0
  524. data/lib/node_modules/npm/node_modules/init-package-json/example/example-default.js +7 -0
  525. data/lib/node_modules/npm/node_modules/init-package-json/example/example-npm.js +13 -0
  526. data/lib/node_modules/npm/node_modules/init-package-json/example/init/basic-init.js +1 -0
  527. data/lib/node_modules/npm/node_modules/init-package-json/init-package-json.js +129 -0
  528. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/LICENSE +15 -0
  529. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/README.md +133 -0
  530. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/index.js +11 -0
  531. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/README.md +8 -0
  532. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init-input.js +191 -0
  533. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init.js +37 -0
  534. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/package.json +10 -0
  535. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/substack-input.js +61 -0
  536. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/package.json +32 -0
  537. data/lib/node_modules/npm/node_modules/init-package-json/node_modules/promzard/promzard.js +216 -0
  538. data/lib/node_modules/npm/node_modules/init-package-json/package.json +48 -0
  539. data/lib/node_modules/npm/node_modules/lockfile/LICENSE +27 -0
  540. data/lib/node_modules/npm/node_modules/lockfile/README.md +81 -0
  541. data/lib/node_modules/npm/node_modules/lockfile/lockfile.js +272 -0
  542. data/lib/node_modules/npm/node_modules/lockfile/package.json +45 -0
  543. data/lib/node_modules/npm/node_modules/lru-cache/CONTRIBUTORS +14 -0
  544. data/lib/node_modules/npm/node_modules/lru-cache/LICENSE +23 -0
  545. data/lib/node_modules/npm/node_modules/lru-cache/README.md +97 -0
  546. data/lib/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js +252 -0
  547. data/lib/node_modules/npm/node_modules/lru-cache/package.json +33 -0
  548. data/lib/node_modules/npm/node_modules/minimatch/LICENSE +23 -0
  549. data/lib/node_modules/npm/node_modules/minimatch/README.md +218 -0
  550. data/lib/node_modules/npm/node_modules/minimatch/minimatch.js +1055 -0
  551. data/lib/node_modules/npm/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  552. data/lib/node_modules/npm/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  553. data/lib/node_modules/npm/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  554. data/lib/node_modules/npm/node_modules/minimatch/node_modules/sigmund/package.json +42 -0
  555. data/lib/node_modules/npm/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  556. data/lib/node_modules/npm/node_modules/minimatch/package.json +40 -0
  557. data/lib/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
  558. data/lib/node_modules/npm/node_modules/mkdirp/README.markdown +63 -0
  559. data/lib/node_modules/npm/node_modules/mkdirp/examples/pow.js +6 -0
  560. data/lib/node_modules/npm/node_modules/mkdirp/index.js +82 -0
  561. data/lib/node_modules/npm/node_modules/mkdirp/package.json +33 -0
  562. data/lib/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
  563. data/lib/node_modules/npm/node_modules/node-gyp/README.md +163 -0
  564. data/lib/node_modules/npm/node_modules/node-gyp/addon.gypi +59 -0
  565. data/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +133 -0
  566. data/lib/node_modules/npm/node_modules/node-gyp/gyp/AUTHORS +10 -0
  567. data/lib/node_modules/npm/node_modules/node-gyp/gyp/DEPS +24 -0
  568. data/lib/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +27 -0
  569. data/lib/node_modules/npm/node_modules/node-gyp/gyp/OWNERS +1 -0
  570. data/lib/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py +115 -0
  571. data/lib/node_modules/npm/node_modules/node-gyp/gyp/buildbot/buildbot_run.py +148 -0
  572. data/lib/node_modules/npm/node_modules/node-gyp/gyp/codereview.settings +10 -0
  573. data/lib/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
  574. data/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp +7 -0
  575. data/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
  576. data/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_dummy.c +7 -0
  577. data/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +18 -0
  578. data/lib/node_modules/npm/node_modules/node-gyp/gyp/gyptest.py +274 -0
  579. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +340 -0
  580. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +208 -0
  581. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1051 -0
  582. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1482 -0
  583. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +58 -0
  584. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +147 -0
  585. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +267 -0
  586. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +407 -0
  587. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +537 -0
  588. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +513 -0
  589. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +72 -0
  590. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +157 -0
  591. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +103 -0
  592. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +49 -0
  593. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  594. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1069 -0
  595. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +81 -0
  596. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +308 -0
  597. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +87 -0
  598. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +56 -0
  599. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2172 -0
  600. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3270 -0
  601. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +37 -0
  602. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2150 -0
  603. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +44 -0
  604. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1224 -0
  605. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +23 -0
  606. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +2809 -0
  607. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +90 -0
  608. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +264 -0
  609. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +870 -0
  610. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +160 -0
  611. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +176 -0
  612. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1324 -0
  613. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +2888 -0
  614. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +69 -0
  615. data/lib/node_modules/npm/node_modules/node-gyp/gyp/pylintrc +307 -0
  616. data/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples +81 -0
  617. data/lib/node_modules/npm/node_modules/node-gyp/gyp/samples/samples.bat +5 -0
  618. data/lib/node_modules/npm/node_modules/node-gyp/gyp/setup.py +19 -0
  619. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/README +15 -0
  620. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/README +5 -0
  621. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
  622. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
  623. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/README +12 -0
  624. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp-tests.el +63 -0
  625. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/gyp.el +252 -0
  626. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/run-unit-tests.sh +7 -0
  627. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp +1105 -0
  628. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
  629. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/graphviz.py +100 -0
  630. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_gyp.py +155 -0
  631. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py +168 -0
  632. data/lib/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_vcproj.py +329 -0
  633. data/lib/node_modules/npm/node_modules/node-gyp/lib/build.js +275 -0
  634. data/lib/node_modules/npm/node_modules/node-gyp/lib/clean.js +22 -0
  635. data/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js +344 -0
  636. data/lib/node_modules/npm/node_modules/node-gyp/lib/install.js +362 -0
  637. data/lib/node_modules/npm/node_modules/node-gyp/lib/list.js +33 -0
  638. data/lib/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +225 -0
  639. data/lib/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +16 -0
  640. data/lib/node_modules/npm/node_modules/node-gyp/lib/remove.js +56 -0
  641. data/lib/node_modules/npm/node_modules/node-gyp/package.json +55 -0
  642. data/lib/node_modules/npm/node_modules/nopt/LICENSE +23 -0
  643. data/lib/node_modules/npm/node_modules/nopt/README.md +210 -0
  644. data/lib/node_modules/npm/node_modules/nopt/bin/nopt.js +51 -0
  645. data/lib/node_modules/npm/node_modules/nopt/examples/my-program.js +30 -0
  646. data/lib/node_modules/npm/node_modules/nopt/lib/nopt.js +407 -0
  647. data/lib/node_modules/npm/node_modules/nopt/package.json +39 -0
  648. data/lib/node_modules/npm/node_modules/npm-install-checks/LICENSE +234 -0
  649. data/lib/node_modules/npm/node_modules/npm-install-checks/README.md +25 -0
  650. data/lib/node_modules/npm/node_modules/npm-install-checks/index.js +146 -0
  651. data/lib/node_modules/npm/node_modules/npm-install-checks/package.json +43 -0
  652. data/lib/node_modules/npm/node_modules/npm-registry-client/LICENSE +27 -0
  653. data/lib/node_modules/npm/node_modules/npm-registry-client/README.md +176 -0
  654. data/lib/node_modules/npm/node_modules/npm-registry-client/index.js +55 -0
  655. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js +138 -0
  656. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/bugs.js +9 -0
  657. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/deprecate.js +28 -0
  658. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/get.js +184 -0
  659. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/publish.js +156 -0
  660. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js +270 -0
  661. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/star.js +29 -0
  662. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/stars.js +9 -0
  663. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/tag.js +6 -0
  664. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/unpublish.js +104 -0
  665. data/lib/node_modules/npm/node_modules/npm-registry-client/lib/upload.js +22 -0
  666. data/lib/node_modules/npm/node_modules/npm-registry-client/package.json +43 -0
  667. data/lib/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
  668. data/lib/node_modules/npm/node_modules/npm-user-validate/README.md +6 -0
  669. data/lib/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js +49 -0
  670. data/lib/node_modules/npm/node_modules/npm-user-validate/package.json +37 -0
  671. data/lib/node_modules/npm/node_modules/npmconf/LICENSE +27 -0
  672. data/lib/node_modules/npm/node_modules/npmconf/README.md +33 -0
  673. data/lib/node_modules/npm/node_modules/npmconf/config-defs.js +353 -0
  674. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/LICENCE +22 -0
  675. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/index.js +282 -0
  676. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/LICENSE +23 -0
  677. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/README.md +3 -0
  678. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json +33 -0
  679. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/proto-list.js +81 -0
  680. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/package.json +32 -0
  681. data/lib/node_modules/npm/node_modules/npmconf/node_modules/config-chain/readme.markdown +228 -0
  682. data/lib/node_modules/npm/node_modules/npmconf/npmconf.js +338 -0
  683. data/lib/node_modules/npm/node_modules/npmconf/package.json +50 -0
  684. data/lib/node_modules/npm/node_modules/npmlog/LICENSE +27 -0
  685. data/lib/node_modules/npm/node_modules/npmlog/README.md +153 -0
  686. data/lib/node_modules/npm/node_modules/npmlog/example.js +39 -0
  687. data/lib/node_modules/npm/node_modules/npmlog/log.js +154 -0
  688. data/lib/node_modules/npm/node_modules/npmlog/package.json +32 -0
  689. data/lib/node_modules/npm/node_modules/once/LICENSE +27 -0
  690. data/lib/node_modules/npm/node_modules/once/README.md +51 -0
  691. data/lib/node_modules/npm/node_modules/once/once.js +20 -0
  692. data/lib/node_modules/npm/node_modules/once/package.json +39 -0
  693. data/lib/node_modules/npm/node_modules/opener/LICENSE.txt +14 -0
  694. data/lib/node_modules/npm/node_modules/opener/README.md +44 -0
  695. data/lib/node_modules/npm/node_modules/opener/opener.js +55 -0
  696. data/lib/node_modules/npm/node_modules/opener/package.json +34 -0
  697. data/lib/node_modules/npm/node_modules/osenv/LICENSE +25 -0
  698. data/lib/node_modules/npm/node_modules/osenv/README.md +63 -0
  699. data/lib/node_modules/npm/node_modules/osenv/osenv.js +80 -0
  700. data/lib/node_modules/npm/node_modules/osenv/package.json +38 -0
  701. data/lib/node_modules/npm/node_modules/path-is-inside/LICENSE.txt +14 -0
  702. data/lib/node_modules/npm/node_modules/path-is-inside/README.md +35 -0
  703. data/lib/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js +24 -0
  704. data/lib/node_modules/npm/node_modules/path-is-inside/package.json +39 -0
  705. data/lib/node_modules/npm/node_modules/read-installed/LICENSE +16 -0
  706. data/lib/node_modules/npm/node_modules/read-installed/README.md +25 -0
  707. data/lib/node_modules/npm/node_modules/read-installed/package.json +39 -0
  708. data/lib/node_modules/npm/node_modules/read-installed/read-installed.js +338 -0
  709. data/lib/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
  710. data/lib/node_modules/npm/node_modules/read-package-json/README.md +166 -0
  711. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/AUTHORS +4 -0
  712. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/LICENSE +30 -0
  713. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/README.md +101 -0
  714. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/core_module_names.json +29 -0
  715. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/extract_description.js +14 -0
  716. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/fixer.js +392 -0
  717. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/normalize.js +36 -0
  718. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/safe_format.js +9 -0
  719. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/typos.json +25 -0
  720. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/lib/warning_messages.json +28 -0
  721. data/lib/node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data/package.json +53 -0
  722. data/lib/node_modules/npm/node_modules/read-package-json/package.json +39 -0
  723. data/lib/node_modules/npm/node_modules/read-package-json/read-json.js +368 -0
  724. data/lib/node_modules/npm/node_modules/read/LICENCE +25 -0
  725. data/lib/node_modules/npm/node_modules/read/README.md +53 -0
  726. data/lib/node_modules/npm/node_modules/read/example/example.js +13 -0
  727. data/lib/node_modules/npm/node_modules/read/lib/read.js +113 -0
  728. data/lib/node_modules/npm/node_modules/read/node_modules/mute-stream/LICENSE +27 -0
  729. data/lib/node_modules/npm/node_modules/read/node_modules/mute-stream/README.md +68 -0
  730. data/lib/node_modules/npm/node_modules/read/node_modules/mute-stream/mute.js +140 -0
  731. data/lib/node_modules/npm/node_modules/read/node_modules/mute-stream/package.json +37 -0
  732. data/lib/node_modules/npm/node_modules/read/package.json +35 -0
  733. data/lib/node_modules/npm/node_modules/read/rs.js +4 -0
  734. data/lib/node_modules/npm/node_modules/request/LICENSE +55 -0
  735. data/lib/node_modules/npm/node_modules/request/README.md +364 -0
  736. data/lib/node_modules/npm/node_modules/request/index.js +157 -0
  737. data/lib/node_modules/npm/node_modules/request/lib/copy.js +8 -0
  738. data/lib/node_modules/npm/node_modules/request/lib/debug.js +7 -0
  739. data/lib/node_modules/npm/node_modules/request/lib/getSafe.js +34 -0
  740. data/lib/node_modules/npm/node_modules/request/lib/optional.js +5 -0
  741. data/lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/LICENSE +55 -0
  742. data/lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/README.md +4 -0
  743. data/lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/index.js +202 -0
  744. data/lib/node_modules/npm/node_modules/request/node_modules/aws-sign2/package.json +28 -0
  745. data/lib/node_modules/npm/node_modules/request/node_modules/forever-agent/LICENSE +55 -0
  746. data/lib/node_modules/npm/node_modules/request/node_modules/forever-agent/README.md +4 -0
  747. data/lib/node_modules/npm/node_modules/request/node_modules/forever-agent/index.js +119 -0
  748. data/lib/node_modules/npm/node_modules/request/node_modules/forever-agent/package.json +28 -0
  749. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/License +19 -0
  750. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/Readme.md +163 -0
  751. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/lib/form_data.js +325 -0
  752. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/LICENSE +19 -0
  753. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/README.md +1414 -0
  754. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/component.json +11 -0
  755. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/lib/async.js +955 -0
  756. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/package.json +43 -0
  757. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/License +19 -0
  758. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/Makefile +7 -0
  759. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/Readme.md +132 -0
  760. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/lib/combined_stream.js +185 -0
  761. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/License +19 -0
  762. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Makefile +7 -0
  763. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Readme.md +154 -0
  764. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/lib/delayed_stream.js +99 -0
  765. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/package.json +31 -0
  766. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/package.json +32 -0
  767. data/lib/node_modules/npm/node_modules/request/node_modules/form-data/package.json +46 -0
  768. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/LICENSE +24 -0
  769. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/Makefile +10 -0
  770. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/README.md +627 -0
  771. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/example/usage.js +78 -0
  772. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/images/hawk.png +0 -0
  773. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/images/logo.png +0 -0
  774. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/index.js +1 -0
  775. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/browser.js +485 -0
  776. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/client.js +367 -0
  777. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/crypto.js +111 -0
  778. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/index.js +15 -0
  779. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/server.js +524 -0
  780. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/utils.js +183 -0
  781. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/LICENSE +24 -0
  782. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/Makefile +11 -0
  783. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/README.md +6 -0
  784. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png +0 -0
  785. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/index.js +1 -0
  786. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js +207 -0
  787. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/package.json +47 -0
  788. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/LICENSE +24 -0
  789. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile +11 -0
  790. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md +6 -0
  791. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js +1 -0
  792. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js +68 -0
  793. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/package.json +48 -0
  794. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/LICENSE +33 -0
  795. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile +10 -0
  796. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/README.md +436 -0
  797. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png +0 -0
  798. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/index.js +1 -0
  799. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js +132 -0
  800. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js +585 -0
  801. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/package.json +49 -0
  802. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/LICENSE +24 -0
  803. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile +11 -0
  804. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/README.md +68 -0
  805. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/examples/offset.js +16 -0
  806. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/examples/time.js +25 -0
  807. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/index.js +1 -0
  808. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js +409 -0
  809. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/package.json +48 -0
  810. data/lib/node_modules/npm/node_modules/request/node_modules/hawk/package.json +53 -0
  811. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/LICENSE +18 -0
  812. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/README.md +75 -0
  813. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/http_signing.md +296 -0
  814. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/index.js +25 -0
  815. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/parser.js +304 -0
  816. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/signer.js +179 -0
  817. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/util.js +249 -0
  818. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/lib/verify.js +42 -0
  819. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/LICENSE +19 -0
  820. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md +50 -0
  821. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js +13 -0
  822. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/index.js +27 -0
  823. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/reader.js +267 -0
  824. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/types.js +36 -0
  825. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/writer.js +317 -0
  826. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/index.js +20 -0
  827. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/package.json +43 -0
  828. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/reader.test.js +172 -0
  829. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/writer.test.js +296 -0
  830. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/README.md +126 -0
  831. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/assert.js +196 -0
  832. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/package.json +20 -0
  833. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/CHANGELOG +71 -0
  834. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/LICENSE +24 -0
  835. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/README +82 -0
  836. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/README.old +298 -0
  837. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/ctf.js +245 -0
  838. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/ctio.js +1485 -0
  839. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/ctype.js +944 -0
  840. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/man/man3ctype/ctio.3ctype +241 -0
  841. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/package.json +18 -0
  842. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsl.conf +129 -0
  843. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsstyle +839 -0
  844. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/float.json +13 -0
  845. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/int.json +13 -0
  846. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/psinfo.json +104 -0
  847. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/struct.json +19 -0
  848. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/tst.fail.js +39 -0
  849. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/tst.float.js +14 -0
  850. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/tst.int.js +14 -0
  851. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/tst.psinfo.js +17 -0
  852. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/tst.struct.js +18 -0
  853. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/tst.typedef.js +15 -0
  854. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/typedef.json +14 -0
  855. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/float/tst.rfloat.js +767 -0
  856. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/float/tst.wfloat.js +753 -0
  857. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/int/tst.64.js +638 -0
  858. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/int/tst.rint.js +101 -0
  859. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/int/tst.wbounds.js +53 -0
  860. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/int/tst.wint.js +92 -0
  861. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/uint/tst.64.js +451 -0
  862. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/uint/tst.roundtrip.js +81 -0
  863. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/uint/tst.ruint.js +95 -0
  864. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctio/uint/tst.wuint.js +156 -0
  865. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.basicr.js +50 -0
  866. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.basicw.js +44 -0
  867. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.char.js +42 -0
  868. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.endian.js +45 -0
  869. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.oldwrite.js +28 -0
  870. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.readSize.js +128 -0
  871. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.structw.js +28 -0
  872. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctype/tst.writeStruct.js +31 -0
  873. data/lib/node_modules/npm/node_modules/request/node_modules/http-signature/package.json +36 -0
  874. data/lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/LICENSE +27 -0
  875. data/lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/README.md +49 -0
  876. data/lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/package.json +33 -0
  877. data/lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/stringify.js +39 -0
  878. data/lib/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/test.js +128 -0
  879. data/lib/node_modules/npm/node_modules/request/node_modules/mime/LICENSE +19 -0
  880. data/lib/node_modules/npm/node_modules/request/node_modules/mime/README.md +66 -0
  881. data/lib/node_modules/npm/node_modules/request/node_modules/mime/mime.js +114 -0
  882. data/lib/node_modules/npm/node_modules/request/node_modules/mime/package.json +36 -0
  883. data/lib/node_modules/npm/node_modules/request/node_modules/mime/test.js +84 -0
  884. data/lib/node_modules/npm/node_modules/request/node_modules/mime/types/mime.types +1588 -0
  885. data/lib/node_modules/npm/node_modules/request/node_modules/mime/types/node.types +77 -0
  886. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/LICENSE.md +2 -0
  887. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/README.md +207 -0
  888. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/README.md +53 -0
  889. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/bench.gnu +174 -0
  890. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/bench.sh +34 -0
  891. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/benchmark-native.c +34 -0
  892. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/benchmark.js +84 -0
  893. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/component.json +18 -0
  894. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/package.json +35 -0
  895. data/lib/node_modules/npm/node_modules/request/node_modules/node-uuid/uuid.js +245 -0
  896. data/lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/LICENSE +55 -0
  897. data/lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/README.md +4 -0
  898. data/lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/index.js +43 -0
  899. data/lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/package.json +31 -0
  900. data/lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/test.js +49 -0
  901. data/lib/node_modules/npm/node_modules/request/node_modules/qs/Readme.md +58 -0
  902. data/lib/node_modules/npm/node_modules/request/node_modules/qs/index.js +366 -0
  903. data/lib/node_modules/npm/node_modules/request/node_modules/qs/package.json +38 -0
  904. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/LICENSE +78 -0
  905. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/README.md +380 -0
  906. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/generate-pubsuffix.js +230 -0
  907. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/cookie.js +947 -0
  908. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/memstore.js +102 -0
  909. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/pubsuffix.js +69 -0
  910. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/LICENSE-GPL.txt +278 -0
  911. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/LICENSE-MIT.txt +20 -0
  912. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/package.json +73 -0
  913. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/punycode.js +508 -0
  914. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/punycode.min.js +2 -0
  915. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/LICENSE.txt +20 -0
  916. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/README.md +35 -0
  917. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/doc/README.md +69 -0
  918. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/doc/parse.php +35 -0
  919. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/docdown.php +38 -0
  920. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/src/DocDown/Alias.php +226 -0
  921. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/src/DocDown/Entry.php +442 -0
  922. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode/vendor/docdown/src/DocDown/Generator.php +563 -0
  923. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/package.json +46 -0
  924. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/public-suffix.txt +5229 -0
  925. data/lib/node_modules/npm/node_modules/request/node_modules/tough-cookie/test.js +1340 -0
  926. data/lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/LICENSE +55 -0
  927. data/lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/README.md +4 -0
  928. data/lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/index.js +227 -0
  929. data/lib/node_modules/npm/node_modules/request/node_modules/tunnel-agent/package.json +28 -0
  930. data/lib/node_modules/npm/node_modules/request/package.json +57 -0
  931. data/lib/node_modules/npm/node_modules/request/request.js +1260 -0
  932. data/lib/node_modules/npm/node_modules/retry/License +21 -0
  933. data/lib/node_modules/npm/node_modules/retry/Makefile +7 -0
  934. data/lib/node_modules/npm/node_modules/retry/Readme.md +167 -0
  935. data/lib/node_modules/npm/node_modules/retry/equation.gif +0 -0
  936. data/lib/node_modules/npm/node_modules/retry/example/dns.js +31 -0
  937. data/lib/node_modules/npm/node_modules/retry/index.js +1 -0
  938. data/lib/node_modules/npm/node_modules/retry/lib/retry.js +50 -0
  939. data/lib/node_modules/npm/node_modules/retry/lib/retry_operation.js +109 -0
  940. data/lib/node_modules/npm/node_modules/retry/package.json +29 -0
  941. data/lib/node_modules/npm/node_modules/rimraf/AUTHORS +6 -0
  942. data/lib/node_modules/npm/node_modules/rimraf/LICENSE +23 -0
  943. data/lib/node_modules/npm/node_modules/rimraf/README.md +30 -0
  944. data/lib/node_modules/npm/node_modules/rimraf/bin.js +33 -0
  945. data/lib/node_modules/npm/node_modules/rimraf/package.json +56 -0
  946. data/lib/node_modules/npm/node_modules/rimraf/rimraf.js +178 -0
  947. data/lib/node_modules/npm/node_modules/semver/LICENSE +27 -0
  948. data/lib/node_modules/npm/node_modules/semver/Makefile +24 -0
  949. data/lib/node_modules/npm/node_modules/semver/README.md +142 -0
  950. data/lib/node_modules/npm/node_modules/semver/bin/semver +124 -0
  951. data/lib/node_modules/npm/node_modules/semver/foot.js +6 -0
  952. data/lib/node_modules/npm/node_modules/semver/head.js +2 -0
  953. data/lib/node_modules/npm/node_modules/semver/package.json +32 -0
  954. data/lib/node_modules/npm/node_modules/semver/semver.browser.js +1007 -0
  955. data/lib/node_modules/npm/node_modules/semver/semver.browser.js.gz +0 -0
  956. data/lib/node_modules/npm/node_modules/semver/semver.js +1011 -0
  957. data/lib/node_modules/npm/node_modules/semver/semver.min.js +1 -0
  958. data/lib/node_modules/npm/node_modules/semver/semver.min.js.gz +0 -0
  959. data/lib/node_modules/npm/node_modules/sha/LICENSE +46 -0
  960. data/lib/node_modules/npm/node_modules/sha/README.md +49 -0
  961. data/lib/node_modules/npm/node_modules/sha/index.js +120 -0
  962. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/LICENSE +27 -0
  963. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/README.md +768 -0
  964. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/duplex.js +1 -0
  965. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/float.patch +68 -0
  966. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_duplex.js +69 -0
  967. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_passthrough.js +41 -0
  968. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_readable.js +927 -0
  969. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_transform.js +205 -0
  970. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_writable.js +369 -0
  971. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/package.json +36 -0
  972. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/passthrough.js +1 -0
  973. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/readable.js +6 -0
  974. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/transform.js +1 -0
  975. data/lib/node_modules/npm/node_modules/sha/node_modules/readable-stream/writable.js +1 -0
  976. data/lib/node_modules/npm/node_modules/sha/package.json +32 -0
  977. data/lib/node_modules/npm/node_modules/slide/LICENSE +15 -0
  978. data/lib/node_modules/npm/node_modules/slide/README.md +143 -0
  979. data/lib/node_modules/npm/node_modules/slide/index.js +1 -0
  980. data/lib/node_modules/npm/node_modules/slide/lib/async-map-ordered.js +65 -0
  981. data/lib/node_modules/npm/node_modules/slide/lib/async-map.js +56 -0
  982. data/lib/node_modules/npm/node_modules/slide/lib/bind-actor.js +16 -0
  983. data/lib/node_modules/npm/node_modules/slide/lib/chain.js +20 -0
  984. data/lib/node_modules/npm/node_modules/slide/lib/slide.js +3 -0
  985. data/lib/node_modules/npm/node_modules/slide/package.json +35 -0
  986. data/lib/node_modules/npm/node_modules/tar/LICENCE +25 -0
  987. data/lib/node_modules/npm/node_modules/tar/README.md +46 -0
  988. data/lib/node_modules/npm/node_modules/tar/examples/extracter.js +11 -0
  989. data/lib/node_modules/npm/node_modules/tar/examples/reader.js +36 -0
  990. data/lib/node_modules/npm/node_modules/tar/lib/buffer-entry.js +30 -0
  991. data/lib/node_modules/npm/node_modules/tar/lib/entry-writer.js +169 -0
  992. data/lib/node_modules/npm/node_modules/tar/lib/entry.js +213 -0
  993. data/lib/node_modules/npm/node_modules/tar/lib/extended-header-writer.js +191 -0
  994. data/lib/node_modules/npm/node_modules/tar/lib/extended-header.js +140 -0
  995. data/lib/node_modules/npm/node_modules/tar/lib/extract.js +78 -0
  996. data/lib/node_modules/npm/node_modules/tar/lib/global-header-writer.js +14 -0
  997. data/lib/node_modules/npm/node_modules/tar/lib/header.js +385 -0
  998. data/lib/node_modules/npm/node_modules/tar/lib/pack.js +231 -0
  999. data/lib/node_modules/npm/node_modules/tar/lib/parse.js +270 -0
  1000. data/lib/node_modules/npm/node_modules/tar/package.json +40 -0
  1001. data/lib/node_modules/npm/node_modules/tar/tar.js +173 -0
  1002. data/lib/node_modules/npm/node_modules/text-table/LICENSE +18 -0
  1003. data/lib/node_modules/npm/node_modules/text-table/example/align.js +8 -0
  1004. data/lib/node_modules/npm/node_modules/text-table/example/center.js +8 -0
  1005. data/lib/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
  1006. data/lib/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
  1007. data/lib/node_modules/npm/node_modules/text-table/example/table.js +6 -0
  1008. data/lib/node_modules/npm/node_modules/text-table/index.js +86 -0
  1009. data/lib/node_modules/npm/node_modules/text-table/package.json +52 -0
  1010. data/lib/node_modules/npm/node_modules/text-table/readme.markdown +134 -0
  1011. data/lib/node_modules/npm/node_modules/uid-number/LICENCE +25 -0
  1012. data/lib/node_modules/npm/node_modules/uid-number/README.md +17 -0
  1013. data/lib/node_modules/npm/node_modules/uid-number/get-uid-gid.js +24 -0
  1014. data/lib/node_modules/npm/node_modules/uid-number/package.json +35 -0
  1015. data/lib/node_modules/npm/node_modules/uid-number/uid-number.js +54 -0
  1016. data/lib/node_modules/npm/node_modules/which/LICENSE +23 -0
  1017. data/lib/node_modules/npm/node_modules/which/README.md +5 -0
  1018. data/lib/node_modules/npm/node_modules/which/bin/which +14 -0
  1019. data/lib/node_modules/npm/node_modules/which/package.json +34 -0
  1020. data/lib/node_modules/npm/node_modules/which/which.js +104 -0
  1021. data/lib/node_modules/npm/package.json +155 -0
  1022. data/lib/node_modules/npm/scripts/clean-old.sh +165 -0
  1023. data/lib/node_modules/npm/scripts/doc-build.sh +84 -0
  1024. data/lib/node_modules/npm/scripts/index-build.js +62 -0
  1025. data/lib/node_modules/npm/scripts/install.sh +313 -0
  1026. data/lib/node_modules/npm/scripts/release.sh +36 -0
  1027. data/lib/node_modules/npm/scripts/relocate.sh +26 -0
  1028. metadata +1052 -36
  1029. checksums.yaml +0 -7
@@ -0,0 +1,254 @@
1
+ .\" Generated with Ronnjs 0.3.8
2
+ .\" http://github.com/kapouer/ronnjs/
3
+ .
4
+ .TH "NPM\-CODING\-STYLE" "7" "February 2014" "" ""
5
+ .
6
+ .SH "NAME"
7
+ \fBnpm-coding-style\fR \-\- npm\'s "funny" coding style
8
+ .
9
+ .SH "DESCRIPTION"
10
+ npm\'s coding style is a bit unconventional\. It is not different for
11
+ difference\'s sake, but rather a carefully crafted style that is
12
+ designed to reduce visual clutter and make bugs more apparent\.
13
+ .
14
+ .P
15
+ If you want to contribute to npm (which is very encouraged), you should
16
+ make your code conform to npm\'s style\.
17
+ .
18
+ .P
19
+ Note: this concerns npm\'s code not the specific packages at npmjs\.org
20
+ .
21
+ .SH "Line Length"
22
+ Keep lines shorter than 80 characters\. It\'s better for lines to be
23
+ too short than to be too long\. Break up long lists, objects, and other
24
+ statements onto multiple lines\.
25
+ .
26
+ .SH "Indentation"
27
+ Two\-spaces\. Tabs are better, but they look like hell in web browsers
28
+ (and on github), and node uses 2 spaces, so that\'s that\.
29
+ .
30
+ .P
31
+ Configure your editor appropriately\.
32
+ .
33
+ .SH "Curly braces"
34
+ Curly braces belong on the same line as the thing that necessitates them\.
35
+ .
36
+ .P
37
+ Bad:
38
+ .
39
+ .IP "" 4
40
+ .
41
+ .nf
42
+ function ()
43
+ {
44
+ .
45
+ .fi
46
+ .
47
+ .IP "" 0
48
+ .
49
+ .P
50
+ Good:
51
+ .
52
+ .IP "" 4
53
+ .
54
+ .nf
55
+ function () {
56
+ .
57
+ .fi
58
+ .
59
+ .IP "" 0
60
+ .
61
+ .P
62
+ If a block needs to wrap to the next line, use a curly brace\. Don\'t
63
+ use it if it doesn\'t\.
64
+ .
65
+ .P
66
+ Bad:
67
+ .
68
+ .IP "" 4
69
+ .
70
+ .nf
71
+ if (foo) { bar() }
72
+ while (foo)
73
+ bar()
74
+ .
75
+ .fi
76
+ .
77
+ .IP "" 0
78
+ .
79
+ .P
80
+ Good:
81
+ .
82
+ .IP "" 4
83
+ .
84
+ .nf
85
+ if (foo) bar()
86
+ while (foo) {
87
+ bar()
88
+ }
89
+ .
90
+ .fi
91
+ .
92
+ .IP "" 0
93
+ .
94
+ .SH "Semicolons"
95
+ Don\'t use them except in four situations:
96
+ .
97
+ .IP "\(bu" 4
98
+ \fBfor (;;)\fR loops\. They\'re actually required\.
99
+ .
100
+ .IP "\(bu" 4
101
+ null loops like: \fBwhile (something) ;\fR (But you\'d better have a good
102
+ reason for doing that\.)
103
+ .
104
+ .IP "\(bu" 4
105
+ \fBcase "foo": doSomething(); break\fR
106
+ .
107
+ .IP "\(bu" 4
108
+ In front of a leading \fB(\fR or \fB[\fR at the start of the line\.
109
+ This prevents the expression from being interpreted
110
+ as a function call or property access, respectively\.
111
+ .
112
+ .IP "" 0
113
+ .
114
+ .P
115
+ Some examples of good semicolon usage:
116
+ .
117
+ .IP "" 4
118
+ .
119
+ .nf
120
+ ;(x || y)\.doSomething()
121
+ ;[a, b, c]\.forEach(doSomething)
122
+ for (var i = 0; i < 10; i ++) {
123
+ switch (state) {
124
+ case "begin": start(); continue
125
+ case "end": finish(); break
126
+ default: throw new Error("unknown state")
127
+ }
128
+ end()
129
+ }
130
+ .
131
+ .fi
132
+ .
133
+ .IP "" 0
134
+ .
135
+ .P
136
+ Note that starting lines with \fB\-\fR and \fB+\fR also should be prefixed
137
+ with a semicolon, but this is much less common\.
138
+ .
139
+ .SH "Comma First"
140
+ If there is a list of things separated by commas, and it wraps
141
+ across multiple lines, put the comma at the start of the next
142
+ line, directly below the token that starts the list\. Put the
143
+ final token in the list on a line by itself\. For example:
144
+ .
145
+ .IP "" 4
146
+ .
147
+ .nf
148
+ var magicWords = [ "abracadabra"
149
+ , "gesundheit"
150
+ , "ventrilo"
151
+ ]
152
+ , spells = { "fireball" : function () { setOnFire() }
153
+ , "water" : function () { putOut() }
154
+ }
155
+ , a = 1
156
+ , b = "abc"
157
+ , etc
158
+ , somethingElse
159
+ .
160
+ .fi
161
+ .
162
+ .IP "" 0
163
+ .
164
+ .SH "Whitespace"
165
+ Put a single space in front of ( for anything other than a function call\.
166
+ Also use a single space wherever it makes things more readable\.
167
+ .
168
+ .P
169
+ Don\'t leave trailing whitespace at the end of lines\. Don\'t indent empty
170
+ lines\. Don\'t use more spaces than are helpful\.
171
+ .
172
+ .SH "Functions"
173
+ Use named functions\. They make stack traces a lot easier to read\.
174
+ .
175
+ .SH "Callbacks, Sync/async Style"
176
+ Use the asynchronous/non\-blocking versions of things as much as possible\.
177
+ It might make more sense for npm to use the synchronous fs APIs, but this
178
+ way, the fs and http and child process stuff all uses the same callback\-passing
179
+ methodology\.
180
+ .
181
+ .P
182
+ The callback should always be the last argument in the list\. Its first
183
+ argument is the Error or null\.
184
+ .
185
+ .P
186
+ Be very careful never to ever ever throw anything\. It\'s worse than useless\.
187
+ Just send the error message back as the first argument to the callback\.
188
+ .
189
+ .SH "Errors"
190
+ Always create a new Error object with your message\. Don\'t just return a
191
+ string message to the callback\. Stack traces are handy\.
192
+ .
193
+ .SH "Logging"
194
+ Logging is done using the npmlog \fIhttps://github\.com/npm/npmlog\fR
195
+ utility\.
196
+ .
197
+ .P
198
+ Please clean up logs when they are no longer helpful\. In particular,
199
+ logging the same object over and over again is not helpful\. Logs should
200
+ report what\'s happening so that it\'s easier to track down where a fault
201
+ occurs\.
202
+ .
203
+ .P
204
+ npm help Use appropriate log levels\. See \fBnpm\-config\fR and search for
205
+ "loglevel"\.
206
+ .
207
+ .SH "Case, naming, etc\."
208
+ Use \fBlowerCamelCase\fR for multiword identifiers when they refer to objects,
209
+ functions, methods, members, or anything not specified in this section\.
210
+ .
211
+ .P
212
+ Use \fBUpperCamelCase\fR for class names (things that you\'d pass to "new")\.
213
+ .
214
+ .P
215
+ Use \fBall\-lower\-hyphen\-css\-case\fR for multiword filenames and config keys\.
216
+ .
217
+ .P
218
+ Use named functions\. They make stack traces easier to follow\.
219
+ .
220
+ .P
221
+ Use \fBCAPS_SNAKE_CASE\fR for constants, things that should never change
222
+ and are rarely used\.
223
+ .
224
+ .P
225
+ Use a single uppercase letter for function names where the function
226
+ would normally be anonymous, but needs to call itself recursively\. It
227
+ makes it clear that it\'s a "throwaway" function\.
228
+ .
229
+ .SH "null, undefined, false, 0"
230
+ Boolean variables and functions should always be either \fBtrue\fR or \fBfalse\fR\|\. Don\'t set it to 0 unless it\'s supposed to be a number\.
231
+ .
232
+ .P
233
+ When something is intentionally missing or removed, set it to \fBnull\fR\|\.
234
+ .
235
+ .P
236
+ Don\'t set things to \fBundefined\fR\|\. Reserve that value to mean "not yet
237
+ set to anything\."
238
+ .
239
+ .P
240
+ Boolean objects are verboten\.
241
+ .
242
+ .SH "SEE ALSO"
243
+ .
244
+ .IP "\(bu" 4
245
+ npm help developers
246
+ .
247
+ .IP "\(bu" 4
248
+ npm help faq
249
+ .
250
+ .IP "\(bu" 4
251
+ npm help npm
252
+ .
253
+ .IP "" 0
254
+
@@ -0,0 +1,1445 @@
1
+ .\" Generated with Ronnjs 0.3.8
2
+ .\" http://github.com/kapouer/ronnjs/
3
+ .
4
+ .TH "NPM\-CONFIG" "7" "February 2014" "" ""
5
+ .
6
+ .SH "NAME"
7
+ \fBnpm-config\fR \-\- More than you probably want to know about npm configuration
8
+ .
9
+ .SH "DESCRIPTION"
10
+ npm gets its configuration values from 6 sources, in this priority:
11
+ .
12
+ .SS "Command Line Flags"
13
+ Putting \fB\-\-foo bar\fR on the command line sets the \fBfoo\fR configuration
14
+ parameter to \fB"bar"\fR\|\. A \fB\-\-\fR argument tells the cli parser to stop
15
+ reading flags\. A \fB\-\-flag\fR parameter that is at the \fIend\fR of the
16
+ command will be given the value of \fBtrue\fR\|\.
17
+ .
18
+ .SS "Environment Variables"
19
+ Any environment variables that start with \fBnpm_config_\fR will be
20
+ interpreted as a configuration parameter\. For example, putting \fBnpm_config_foo=bar\fR in your environment will set the \fBfoo\fR
21
+ configuration parameter to \fBbar\fR\|\. Any environment configurations that
22
+ are not given a value will be given the value of \fBtrue\fR\|\. Config
23
+ values are case\-insensitive, so \fBNPM_CONFIG_FOO=bar\fR will work the
24
+ same\.
25
+ .
26
+ .SS "npmrc Files"
27
+ The three relevant files are:
28
+ .
29
+ .IP "\(bu" 4
30
+ per\-user config file (~/\.npmrc)
31
+ .
32
+ .IP "\(bu" 4
33
+ global config file ($PREFIX/npmrc)
34
+ .
35
+ .IP "\(bu" 4
36
+ npm builtin config file (/path/to/npm/npmrc)
37
+ .
38
+ .IP "" 0
39
+ .
40
+ .P
41
+ npm help See npmrc for more details\.
42
+ .
43
+ .SS "Default Configs"
44
+ A set of configuration parameters that are internal to npm, and are
45
+ defaults if nothing else is specified\.
46
+ .
47
+ .SH "Shorthands and Other CLI Niceties"
48
+ The following shorthands are parsed on the command\-line:
49
+ .
50
+ .IP "\(bu" 4
51
+ \fB\-v\fR: \fB\-\-version\fR
52
+ .
53
+ .IP "\(bu" 4
54
+ \fB\-h\fR, \fB\-?\fR, \fB\-\-help\fR, \fB\-H\fR: \fB\-\-usage\fR
55
+ .
56
+ .IP "\(bu" 4
57
+ \fB\-s\fR, \fB\-\-silent\fR: \fB\-\-loglevel silent\fR
58
+ .
59
+ .IP "\(bu" 4
60
+ \fB\-q\fR, \fB\-\-quiet\fR: \fB\-\-loglevel warn\fR
61
+ .
62
+ .IP "\(bu" 4
63
+ \fB\-d\fR: \fB\-\-loglevel info\fR
64
+ .
65
+ .IP "\(bu" 4
66
+ \fB\-dd\fR, \fB\-\-verbose\fR: \fB\-\-loglevel verbose\fR
67
+ .
68
+ .IP "\(bu" 4
69
+ \fB\-ddd\fR: \fB\-\-loglevel silly\fR
70
+ .
71
+ .IP "\(bu" 4
72
+ \fB\-g\fR: \fB\-\-global\fR
73
+ .
74
+ .IP "\(bu" 4
75
+ \fB\-l\fR: \fB\-\-long\fR
76
+ .
77
+ .IP "\(bu" 4
78
+ \fB\-m\fR: \fB\-\-message\fR
79
+ .
80
+ .IP "\(bu" 4
81
+ \fB\-p\fR, \fB\-\-porcelain\fR: \fB\-\-parseable\fR
82
+ .
83
+ .IP "\(bu" 4
84
+ \fB\-reg\fR: \fB\-\-registry\fR
85
+ .
86
+ .IP "\(bu" 4
87
+ \fB\-v\fR: \fB\-\-version\fR
88
+ .
89
+ .IP "\(bu" 4
90
+ \fB\-f\fR: \fB\-\-force\fR
91
+ .
92
+ .IP "\(bu" 4
93
+ \fB\-desc\fR: \fB\-\-description\fR
94
+ .
95
+ .IP "\(bu" 4
96
+ \fB\-S\fR: \fB\-\-save\fR
97
+ .
98
+ .IP "\(bu" 4
99
+ \fB\-D\fR: \fB\-\-save\-dev\fR
100
+ .
101
+ .IP "\(bu" 4
102
+ \fB\-O\fR: \fB\-\-save\-optional\fR
103
+ .
104
+ .IP "\(bu" 4
105
+ \fB\-B\fR: \fB\-\-save\-bundle\fR
106
+ .
107
+ .IP "\(bu" 4
108
+ \fB\-y\fR: \fB\-\-yes\fR
109
+ .
110
+ .IP "\(bu" 4
111
+ \fB\-n\fR: \fB\-\-yes false\fR
112
+ .
113
+ .IP "\(bu" 4
114
+ \fBll\fR and \fBla\fR commands: \fBls \-\-long\fR
115
+ .
116
+ .IP "" 0
117
+ .
118
+ .P
119
+ If the specified configuration param resolves unambiguously to a known
120
+ configuration parameter, then it is expanded to that configuration
121
+ parameter\. For example:
122
+ .
123
+ .IP "" 4
124
+ .
125
+ .nf
126
+ npm ls \-\-par
127
+ # same as:
128
+ npm ls \-\-parseable
129
+ .
130
+ .fi
131
+ .
132
+ .IP "" 0
133
+ .
134
+ .P
135
+ If multiple single\-character shorthands are strung together, and the
136
+ resulting combination is unambiguously not some other configuration
137
+ param, then it is expanded to its various component pieces\. For
138
+ example:
139
+ .
140
+ .IP "" 4
141
+ .
142
+ .nf
143
+ npm ls \-gpld
144
+ # same as:
145
+ npm ls \-\-global \-\-parseable \-\-long \-\-loglevel info
146
+ .
147
+ .fi
148
+ .
149
+ .IP "" 0
150
+ .
151
+ .SH "Per\-Package Config Settings"
152
+ When running scripts (npm help see \fBnpm\-scripts\fR) the package\.json "config"
153
+ keys are overwritten in the environment if there is a config param of \fB<name>[@<version>]:<key>\fR\|\. For example, if the package\.json has
154
+ this:
155
+ .
156
+ .IP "" 4
157
+ .
158
+ .nf
159
+ { "name" : "foo"
160
+ , "config" : { "port" : "8080" }
161
+ , "scripts" : { "start" : "node server\.js" } }
162
+ .
163
+ .fi
164
+ .
165
+ .IP "" 0
166
+ .
167
+ .P
168
+ and the server\.js is this:
169
+ .
170
+ .IP "" 4
171
+ .
172
+ .nf
173
+ http\.createServer(\.\.\.)\.listen(process\.env\.npm_package_config_port)
174
+ .
175
+ .fi
176
+ .
177
+ .IP "" 0
178
+ .
179
+ .P
180
+ then the user could change the behavior by doing:
181
+ .
182
+ .IP "" 4
183
+ .
184
+ .nf
185
+ npm config set foo:port 80
186
+ .
187
+ .fi
188
+ .
189
+ .IP "" 0
190
+ .
191
+ .P
192
+ npm help See package\.json for more information\.
193
+ .
194
+ .SH "Config Settings"
195
+ .
196
+ .SS "always\-auth"
197
+ .
198
+ .IP "\(bu" 4
199
+ Default: false
200
+ .
201
+ .IP "\(bu" 4
202
+ Type: Boolean
203
+ .
204
+ .IP "" 0
205
+ .
206
+ .P
207
+ Force npm to always require authentication when accessing the registry,
208
+ even for \fBGET\fR requests\.
209
+ .
210
+ .SS "bin\-links"
211
+ .
212
+ .IP "\(bu" 4
213
+ Default: \fBtrue\fR
214
+ .
215
+ .IP "\(bu" 4
216
+ Type: Boolean
217
+ .
218
+ .IP "" 0
219
+ .
220
+ .P
221
+ Tells npm to create symlinks (or \fB\|\.cmd\fR shims on Windows) for package
222
+ executables\.
223
+ .
224
+ .P
225
+ Set to false to have it not do this\. This can be used to work around
226
+ the fact that some file systems don\'t support symlinks, even on
227
+ ostensibly Unix systems\.
228
+ .
229
+ .SS "browser"
230
+ .
231
+ .IP "\(bu" 4
232
+ Default: OS X: \fB"open"\fR, Windows: \fB"start"\fR, Others: \fB"xdg\-open"\fR
233
+ .
234
+ .IP "\(bu" 4
235
+ Type: String
236
+ .
237
+ .IP "" 0
238
+ .
239
+ .P
240
+ The browser that is called by the \fBnpm docs\fR command to open websites\.
241
+ .
242
+ .SS "ca"
243
+ .
244
+ .IP "\(bu" 4
245
+ Default: The npm CA certificate
246
+ .
247
+ .IP "\(bu" 4
248
+ Type: String or null
249
+ .
250
+ .IP "" 0
251
+ .
252
+ .P
253
+ The Certificate Authority signing certificate that is trusted for SSL
254
+ connections to the registry\.
255
+ .
256
+ .P
257
+ Set to \fBnull\fR to only allow "known" registrars, or to a specific CA cert
258
+ to trust only that specific signing authority\.
259
+ .
260
+ .P
261
+ See also the \fBstrict\-ssl\fR config\.
262
+ .
263
+ .SS "cache"
264
+ .
265
+ .IP "\(bu" 4
266
+ Default: Windows: \fB%AppData%\\npm\-cache\fR, Posix: \fB~/\.npm\fR
267
+ .
268
+ .IP "\(bu" 4
269
+ Type: path
270
+ .
271
+ .IP "" 0
272
+ .
273
+ .P
274
+ npm help The location of npm\'s cache directory\. See \fBnpm\-cache\fR
275
+ .
276
+ .SS "cache\-lock\-stale"
277
+ .
278
+ .IP "\(bu" 4
279
+ Default: 60000 (1 minute)
280
+ .
281
+ .IP "\(bu" 4
282
+ Type: Number
283
+ .
284
+ .IP "" 0
285
+ .
286
+ .P
287
+ The number of ms before cache folder lockfiles are considered stale\.
288
+ .
289
+ .SS "cache\-lock\-retries"
290
+ .
291
+ .IP "\(bu" 4
292
+ Default: 10
293
+ .
294
+ .IP "\(bu" 4
295
+ Type: Number
296
+ .
297
+ .IP "" 0
298
+ .
299
+ .P
300
+ Number of times to retry to acquire a lock on cache folder lockfiles\.
301
+ .
302
+ .SS "cache\-lock\-wait"
303
+ .
304
+ .IP "\(bu" 4
305
+ Default: 10000 (10 seconds)
306
+ .
307
+ .IP "\(bu" 4
308
+ Type: Number
309
+ .
310
+ .IP "" 0
311
+ .
312
+ .P
313
+ Number of ms to wait for cache lock files to expire\.
314
+ .
315
+ .SS "cache\-max"
316
+ .
317
+ .IP "\(bu" 4
318
+ Default: Infinity
319
+ .
320
+ .IP "\(bu" 4
321
+ Type: Number
322
+ .
323
+ .IP "" 0
324
+ .
325
+ .P
326
+ The maximum time (in seconds) to keep items in the registry cache before
327
+ re\-checking against the registry\.
328
+ .
329
+ .P
330
+ Note that no purging is done unless the \fBnpm cache clean\fR command is
331
+ explicitly used, and that only GET requests use the cache\.
332
+ .
333
+ .SS "cache\-min"
334
+ .
335
+ .IP "\(bu" 4
336
+ Default: 10
337
+ .
338
+ .IP "\(bu" 4
339
+ Type: Number
340
+ .
341
+ .IP "" 0
342
+ .
343
+ .P
344
+ The minimum time (in seconds) to keep items in the registry cache before
345
+ re\-checking against the registry\.
346
+ .
347
+ .P
348
+ Note that no purging is done unless the \fBnpm cache clean\fR command is
349
+ explicitly used, and that only GET requests use the cache\.
350
+ .
351
+ .SS "cert"
352
+ .
353
+ .IP "\(bu" 4
354
+ Default: \fBnull\fR
355
+ .
356
+ .IP "\(bu" 4
357
+ Type: String
358
+ .
359
+ .IP "" 0
360
+ .
361
+ .P
362
+ A client certificate to pass when accessing the registry\.
363
+ .
364
+ .SS "color"
365
+ .
366
+ .IP "\(bu" 4
367
+ Default: true on Posix, false on Windows
368
+ .
369
+ .IP "\(bu" 4
370
+ Type: Boolean or \fB"always"\fR
371
+ .
372
+ .IP "" 0
373
+ .
374
+ .P
375
+ If false, never shows colors\. If \fB"always"\fR then always shows colors\.
376
+ If true, then only prints color codes for tty file descriptors\.
377
+ .
378
+ .SS "depth"
379
+ .
380
+ .IP "\(bu" 4
381
+ Default: Infinity
382
+ .
383
+ .IP "\(bu" 4
384
+ Type: Number
385
+ .
386
+ .IP "" 0
387
+ .
388
+ .P
389
+ The depth to go when recursing directories for \fBnpm ls\fR and \fBnpm cache ls\fR\|\.
390
+ .
391
+ .SS "description"
392
+ .
393
+ .IP "\(bu" 4
394
+ Default: true
395
+ .
396
+ .IP "\(bu" 4
397
+ Type: Boolean
398
+ .
399
+ .IP "" 0
400
+ .
401
+ .P
402
+ Show the description in \fBnpm search\fR
403
+ .
404
+ .SS "dev"
405
+ .
406
+ .IP "\(bu" 4
407
+ Default: false
408
+ .
409
+ .IP "\(bu" 4
410
+ Type: Boolean
411
+ .
412
+ .IP "" 0
413
+ .
414
+ .P
415
+ Install \fBdev\-dependencies\fR along with packages\.
416
+ .
417
+ .P
418
+ Note that \fBdev\-dependencies\fR are also installed if the \fBnpat\fR flag is
419
+ set\.
420
+ .
421
+ .SS "editor"
422
+ .
423
+ .IP "\(bu" 4
424
+ Default: \fBEDITOR\fR environment variable if set, or \fB"vi"\fR on Posix,
425
+ or \fB"notepad"\fR on Windows\.
426
+ .
427
+ .IP "\(bu" 4
428
+ Type: path
429
+ .
430
+ .IP "" 0
431
+ .
432
+ .P
433
+ The command to run for \fBnpm edit\fR or \fBnpm config edit\fR\|\.
434
+ .
435
+ .SS "email"
436
+ The email of the logged\-in user\.
437
+ .
438
+ .P
439
+ Set by the \fBnpm adduser\fR command\. Should not be set explicitly\.
440
+ .
441
+ .SS "engine\-strict"
442
+ .
443
+ .IP "\(bu" 4
444
+ Default: false
445
+ .
446
+ .IP "\(bu" 4
447
+ Type: Boolean
448
+ .
449
+ .IP "" 0
450
+ .
451
+ .P
452
+ If set to true, then npm will stubbornly refuse to install (or even
453
+ consider installing) any package that claims to not be compatible with
454
+ the current Node\.js version\.
455
+ .
456
+ .SS "force"
457
+ .
458
+ .IP "\(bu" 4
459
+ Default: false
460
+ .
461
+ .IP "\(bu" 4
462
+ Type: Boolean
463
+ .
464
+ .IP "" 0
465
+ .
466
+ .P
467
+ Makes various commands more forceful\.
468
+ .
469
+ .IP "\(bu" 4
470
+ lifecycle script failure does not block progress\.
471
+ .
472
+ .IP "\(bu" 4
473
+ publishing clobbers previously published versions\.
474
+ .
475
+ .IP "\(bu" 4
476
+ skips cache when requesting from the registry\.
477
+ .
478
+ .IP "\(bu" 4
479
+ prevents checks against clobbering non\-npm files\.
480
+ .
481
+ .IP "" 0
482
+ .
483
+ .SS "fetch\-retries"
484
+ .
485
+ .IP "\(bu" 4
486
+ Default: 2
487
+ .
488
+ .IP "\(bu" 4
489
+ Type: Number
490
+ .
491
+ .IP "" 0
492
+ .
493
+ .P
494
+ The "retries" config for the \fBretry\fR module to use when fetching
495
+ packages from the registry\.
496
+ .
497
+ .SS "fetch\-retry\-factor"
498
+ .
499
+ .IP "\(bu" 4
500
+ Default: 10
501
+ .
502
+ .IP "\(bu" 4
503
+ Type: Number
504
+ .
505
+ .IP "" 0
506
+ .
507
+ .P
508
+ The "factor" config for the \fBretry\fR module to use when fetching
509
+ packages\.
510
+ .
511
+ .SS "fetch\-retry\-mintimeout"
512
+ .
513
+ .IP "\(bu" 4
514
+ Default: 10000 (10 seconds)
515
+ .
516
+ .IP "\(bu" 4
517
+ Type: Number
518
+ .
519
+ .IP "" 0
520
+ .
521
+ .P
522
+ The "minTimeout" config for the \fBretry\fR module to use when fetching
523
+ packages\.
524
+ .
525
+ .SS "fetch\-retry\-maxtimeout"
526
+ .
527
+ .IP "\(bu" 4
528
+ Default: 60000 (1 minute)
529
+ .
530
+ .IP "\(bu" 4
531
+ Type: Number
532
+ .
533
+ .IP "" 0
534
+ .
535
+ .P
536
+ The "maxTimeout" config for the \fBretry\fR module to use when fetching
537
+ packages\.
538
+ .
539
+ .SS "git"
540
+ .
541
+ .IP "\(bu" 4
542
+ Default: \fB"git"\fR
543
+ .
544
+ .IP "\(bu" 4
545
+ Type: String
546
+ .
547
+ .IP "" 0
548
+ .
549
+ .P
550
+ The command to use for git commands\. If git is installed on the
551
+ computer, but is not in the \fBPATH\fR, then set this to the full path to
552
+ the git binary\.
553
+ .
554
+ .SS "git\-tag\-version"
555
+ .
556
+ .IP "\(bu" 4
557
+ Default: \fBtrue\fR
558
+ .
559
+ .IP "\(bu" 4
560
+ Type: Boolean
561
+ .
562
+ .IP "" 0
563
+ .
564
+ .P
565
+ Tag the commit when using the \fBnpm version\fR command\.
566
+ .
567
+ .SS "global"
568
+ .
569
+ .IP "\(bu" 4
570
+ Default: false
571
+ .
572
+ .IP "\(bu" 4
573
+ Type: Boolean
574
+ .
575
+ .IP "" 0
576
+ .
577
+ .P
578
+ npm help Operates in "global" mode, so that packages are installed into the \fBprefix\fR folder instead of the current working directory\. See \fBnpm\-folders\fR for more on the differences in behavior\.
579
+ .
580
+ .IP "\(bu" 4
581
+ packages are installed into the \fB{prefix}/lib/node_modules\fR folder, instead of the
582
+ current working directory\.
583
+ .
584
+ .IP "\(bu" 4
585
+ bin files are linked to \fB{prefix}/bin\fR
586
+ .
587
+ .IP "\(bu" 4
588
+ man pages are linked to \fB{prefix}/share/man\fR
589
+ .
590
+ .IP "" 0
591
+ .
592
+ .SS "globalconfig"
593
+ .
594
+ .IP "\(bu" 4
595
+ Default: {prefix}/etc/npmrc
596
+ .
597
+ .IP "\(bu" 4
598
+ Type: path
599
+ .
600
+ .IP "" 0
601
+ .
602
+ .P
603
+ The config file to read for global config options\.
604
+ .
605
+ .SS "group"
606
+ .
607
+ .IP "\(bu" 4
608
+ Default: GID of the current process
609
+ .
610
+ .IP "\(bu" 4
611
+ Type: String or Number
612
+ .
613
+ .IP "" 0
614
+ .
615
+ .P
616
+ The group to use when running package scripts in global mode as the root
617
+ user\.
618
+ .
619
+ .SS "heading"
620
+ .
621
+ .IP "\(bu" 4
622
+ Default: \fB"npm"\fR
623
+ .
624
+ .IP "\(bu" 4
625
+ Type: String
626
+ .
627
+ .IP "" 0
628
+ .
629
+ .P
630
+ The string that starts all the debugging log output\.
631
+ .
632
+ .SS "https\-proxy"
633
+ .
634
+ .IP "\(bu" 4
635
+ Default: the \fBHTTPS_PROXY\fR or \fBhttps_proxy\fR or \fBHTTP_PROXY\fR or \fBhttp_proxy\fR environment variables\.
636
+ .
637
+ .IP "\(bu" 4
638
+ Type: url
639
+ .
640
+ .IP "" 0
641
+ .
642
+ .P
643
+ A proxy to use for outgoing https requests\.
644
+ .
645
+ .SS "ignore\-scripts"
646
+ .
647
+ .IP "\(bu" 4
648
+ Default: false
649
+ .
650
+ .IP "\(bu" 4
651
+ Type: Boolean
652
+ .
653
+ .IP "" 0
654
+ .
655
+ .P
656
+ If true, npm does not run scripts specified in package\.json files\.
657
+ .
658
+ .SS "init\-module"
659
+ .
660
+ .IP "\(bu" 4
661
+ Default: ~/\.npm\-init\.js
662
+ .
663
+ .IP "\(bu" 4
664
+ Type: path
665
+ .
666
+ .IP "" 0
667
+ .
668
+ .P
669
+ A module that will be loaded by the \fBnpm init\fR command\. See the
670
+ documentation for the init\-package\-json \fIhttps://github\.com/isaacs/init\-package\-json\fR module
671
+ npm help for more information, or npm\-init\.
672
+ .
673
+ .SS "init\.author\.name"
674
+ .
675
+ .IP "\(bu" 4
676
+ Default: ""
677
+ .
678
+ .IP "\(bu" 4
679
+ Type: String
680
+ .
681
+ .IP "" 0
682
+ .
683
+ .P
684
+ The value \fBnpm init\fR should use by default for the package author\'s name\.
685
+ .
686
+ .SS "init\.author\.email"
687
+ .
688
+ .IP "\(bu" 4
689
+ Default: ""
690
+ .
691
+ .IP "\(bu" 4
692
+ Type: String
693
+ .
694
+ .IP "" 0
695
+ .
696
+ .P
697
+ The value \fBnpm init\fR should use by default for the package author\'s email\.
698
+ .
699
+ .SS "init\.author\.url"
700
+ .
701
+ .IP "\(bu" 4
702
+ Default: ""
703
+ .
704
+ .IP "\(bu" 4
705
+ Type: String
706
+ .
707
+ .IP "" 0
708
+ .
709
+ .P
710
+ The value \fBnpm init\fR should use by default for the package author\'s homepage\.
711
+ .
712
+ .SS "init\.license"
713
+ .
714
+ .IP "\(bu" 4
715
+ Default: "ISC"
716
+ .
717
+ .IP "\(bu" 4
718
+ Type: String
719
+ .
720
+ .IP "" 0
721
+ .
722
+ .P
723
+ The value \fBnpm init\fR should use by default for the package license\.
724
+ .
725
+ .SS "json"
726
+ .
727
+ .IP "\(bu" 4
728
+ Default: false
729
+ .
730
+ .IP "\(bu" 4
731
+ Type: Boolean
732
+ .
733
+ .IP "" 0
734
+ .
735
+ .P
736
+ Whether or not to output JSON data, rather than the normal output\.
737
+ .
738
+ .P
739
+ This feature is currently experimental, and the output data structures
740
+ for many commands is either not implemented in JSON yet, or subject to
741
+ change\. Only the output from \fBnpm ls \-\-json\fR is currently valid\.
742
+ .
743
+ .SS "key"
744
+ .
745
+ .IP "\(bu" 4
746
+ Default: \fBnull\fR
747
+ .
748
+ .IP "\(bu" 4
749
+ Type: String
750
+ .
751
+ .IP "" 0
752
+ .
753
+ .P
754
+ A client key to pass when accessing the registry\.
755
+ .
756
+ .SS "link"
757
+ .
758
+ .IP "\(bu" 4
759
+ Default: false
760
+ .
761
+ .IP "\(bu" 4
762
+ Type: Boolean
763
+ .
764
+ .IP "" 0
765
+ .
766
+ .P
767
+ If true, then local installs will link if there is a suitable globally
768
+ installed package\.
769
+ .
770
+ .P
771
+ Note that this means that local installs can cause things to be
772
+ installed into the global space at the same time\. The link is only done
773
+ if one of the two conditions are met:
774
+ .
775
+ .IP "\(bu" 4
776
+ The package is not already installed globally, or
777
+ .
778
+ .IP "\(bu" 4
779
+ the globally installed version is identical to the version that is
780
+ being installed locally\.
781
+ .
782
+ .IP "" 0
783
+ .
784
+ .SS "local\-address"
785
+ .
786
+ .IP "\(bu" 4
787
+ Default: undefined
788
+ .
789
+ .IP "\(bu" 4
790
+ Type: IP Address
791
+ .
792
+ .IP "" 0
793
+ .
794
+ .P
795
+ The IP address of the local interface to use when making connections
796
+ to the npm registry\. Must be IPv4 in versions of Node prior to 0\.12\.
797
+ .
798
+ .SS "loglevel"
799
+ .
800
+ .IP "\(bu" 4
801
+ Default: "http"
802
+ .
803
+ .IP "\(bu" 4
804
+ Type: String
805
+ .
806
+ .IP "\(bu" 4
807
+ Values: "silent", "win", "error", "warn", "http", "info", "verbose", "silly"
808
+ .
809
+ .IP "" 0
810
+ .
811
+ .P
812
+ What level of logs to report\. On failure, \fIall\fR logs are written to \fBnpm\-debug\.log\fR in the current working directory\.
813
+ .
814
+ .P
815
+ Any logs of a higher level than the setting are shown\.
816
+ The default is "http", which shows http, warn, and error output\.
817
+ .
818
+ .SS "logstream"
819
+ .
820
+ .IP "\(bu" 4
821
+ Default: process\.stderr
822
+ .
823
+ .IP "\(bu" 4
824
+ Type: Stream
825
+ .
826
+ .IP "" 0
827
+ .
828
+ .P
829
+ This is the stream that is passed to the npmlog \fIhttps://github\.com/npm/npmlog\fR module at run time\.
830
+ .
831
+ .P
832
+ It cannot be set from the command line, but if you are using npm
833
+ programmatically, you may wish to send logs to somewhere other than
834
+ stderr\.
835
+ .
836
+ .P
837
+ If the \fBcolor\fR config is set to true, then this stream will receive
838
+ colored output if it is a TTY\.
839
+ .
840
+ .SS "long"
841
+ .
842
+ .IP "\(bu" 4
843
+ Default: false
844
+ .
845
+ .IP "\(bu" 4
846
+ Type: Boolean
847
+ .
848
+ .IP "" 0
849
+ .
850
+ .P
851
+ Show extended information in \fBnpm ls\fR and \fBnpm search\fR\|\.
852
+ .
853
+ .SS "message"
854
+ .
855
+ .IP "\(bu" 4
856
+ Default: "%s"
857
+ .
858
+ .IP "\(bu" 4
859
+ Type: String
860
+ .
861
+ .IP "" 0
862
+ .
863
+ .P
864
+ Commit message which is used by \fBnpm version\fR when creating version commit\.
865
+ .
866
+ .P
867
+ Any "%s" in the message will be replaced with the version number\.
868
+ .
869
+ .SS "node\-version"
870
+ .
871
+ .IP "\(bu" 4
872
+ Default: process\.version
873
+ .
874
+ .IP "\(bu" 4
875
+ Type: semver or false
876
+ .
877
+ .IP "" 0
878
+ .
879
+ .P
880
+ The node version to use when checking package\'s "engines" hash\.
881
+ .
882
+ .SS "npat"
883
+ .
884
+ .IP "\(bu" 4
885
+ Default: false
886
+ .
887
+ .IP "\(bu" 4
888
+ Type: Boolean
889
+ .
890
+ .IP "" 0
891
+ .
892
+ .P
893
+ Run tests on installation\.
894
+ .
895
+ .SS "onload\-script"
896
+ .
897
+ .IP "\(bu" 4
898
+ Default: false
899
+ .
900
+ .IP "\(bu" 4
901
+ Type: path
902
+ .
903
+ .IP "" 0
904
+ .
905
+ .P
906
+ A node module to \fBrequire()\fR when npm loads\. Useful for programmatic
907
+ usage\.
908
+ .
909
+ .SS "optional"
910
+ .
911
+ .IP "\(bu" 4
912
+ Default: true
913
+ .
914
+ .IP "\(bu" 4
915
+ Type: Boolean
916
+ .
917
+ .IP "" 0
918
+ .
919
+ .P
920
+ Attempt to install packages in the \fBoptionalDependencies\fR hash\. Note
921
+ that if these packages fail to install, the overall installation
922
+ process is not aborted\.
923
+ .
924
+ .SS "parseable"
925
+ .
926
+ .IP "\(bu" 4
927
+ Default: false
928
+ .
929
+ .IP "\(bu" 4
930
+ Type: Boolean
931
+ .
932
+ .IP "" 0
933
+ .
934
+ .P
935
+ Output parseable results from commands that write to
936
+ standard output\.
937
+ .
938
+ .SS "prefix"
939
+ .
940
+ .IP "\(bu" 4
941
+ npm help Default: see npm\-folders
942
+ .
943
+ .IP "\(bu" 4
944
+ Type: path
945
+ .
946
+ .IP "" 0
947
+ .
948
+ .P
949
+ The location to install global items\. If set on the command line, then
950
+ it forces non\-global commands to run in the specified folder\.
951
+ .
952
+ .SS "production"
953
+ .
954
+ .IP "\(bu" 4
955
+ Default: false
956
+ .
957
+ .IP "\(bu" 4
958
+ Type: Boolean
959
+ .
960
+ .IP "" 0
961
+ .
962
+ .P
963
+ Set to true to run in "production" mode\.
964
+ .
965
+ .IP "1" 4
966
+ devDependencies are not installed at the topmost level when running
967
+ local \fBnpm install\fR without any arguments\.
968
+ .
969
+ .IP "2" 4
970
+ Set the NODE_ENV="production" for lifecycle scripts\.
971
+ .
972
+ .IP "" 0
973
+ .
974
+ .SS "proprietary\-attribs"
975
+ .
976
+ .IP "\(bu" 4
977
+ Default: true
978
+ .
979
+ .IP "\(bu" 4
980
+ Type: Boolean
981
+ .
982
+ .IP "" 0
983
+ .
984
+ .P
985
+ Whether or not to include proprietary extended attributes in the
986
+ tarballs created by npm\.
987
+ .
988
+ .P
989
+ Unless you are expecting to unpack package tarballs with something other
990
+ than npm \-\- particularly a very outdated tar implementation \-\- leave
991
+ this as true\.
992
+ .
993
+ .SS "proxy"
994
+ .
995
+ .IP "\(bu" 4
996
+ Default: \fBHTTP_PROXY\fR or \fBhttp_proxy\fR environment variable, or null
997
+ .
998
+ .IP "\(bu" 4
999
+ Type: url
1000
+ .
1001
+ .IP "" 0
1002
+ .
1003
+ .P
1004
+ A proxy to use for outgoing http requests\.
1005
+ .
1006
+ .SS "rebuild\-bundle"
1007
+ .
1008
+ .IP "\(bu" 4
1009
+ Default: true
1010
+ .
1011
+ .IP "\(bu" 4
1012
+ Type: Boolean
1013
+ .
1014
+ .IP "" 0
1015
+ .
1016
+ .P
1017
+ Rebuild bundled dependencies after installation\.
1018
+ .
1019
+ .SS "registry"
1020
+ .
1021
+ .IP "\(bu" 4
1022
+ Default: https://registry\.npmjs\.org/
1023
+ .
1024
+ .IP "\(bu" 4
1025
+ Type: url
1026
+ .
1027
+ .IP "" 0
1028
+ .
1029
+ .P
1030
+ The base URL of the npm package registry\.
1031
+ .
1032
+ .SS "rollback"
1033
+ .
1034
+ .IP "\(bu" 4
1035
+ Default: true
1036
+ .
1037
+ .IP "\(bu" 4
1038
+ Type: Boolean
1039
+ .
1040
+ .IP "" 0
1041
+ .
1042
+ .P
1043
+ Remove failed installs\.
1044
+ .
1045
+ .SS "save"
1046
+ .
1047
+ .IP "\(bu" 4
1048
+ Default: false
1049
+ .
1050
+ .IP "\(bu" 4
1051
+ Type: Boolean
1052
+ .
1053
+ .IP "" 0
1054
+ .
1055
+ .P
1056
+ Save installed packages to a package\.json file as dependencies\.
1057
+ .
1058
+ .P
1059
+ When used with the \fBnpm rm\fR command, it removes it from the dependencies
1060
+ hash\.
1061
+ .
1062
+ .P
1063
+ Only works if there is already a package\.json file present\.
1064
+ .
1065
+ .SS "save\-bundle"
1066
+ .
1067
+ .IP "\(bu" 4
1068
+ Default: false
1069
+ .
1070
+ .IP "\(bu" 4
1071
+ Type: Boolean
1072
+ .
1073
+ .IP "" 0
1074
+ .
1075
+ .P
1076
+ If a package would be saved at install time by the use of \fB\-\-save\fR, \fB\-\-save\-dev\fR, or \fB\-\-save\-optional\fR, then also put it in the \fBbundleDependencies\fR list\.
1077
+ .
1078
+ .P
1079
+ When used with the \fBnpm rm\fR command, it removes it from the
1080
+ bundledDependencies list\.
1081
+ .
1082
+ .SS "save\-dev"
1083
+ .
1084
+ .IP "\(bu" 4
1085
+ Default: false
1086
+ .
1087
+ .IP "\(bu" 4
1088
+ Type: Boolean
1089
+ .
1090
+ .IP "" 0
1091
+ .
1092
+ .P
1093
+ Save installed packages to a package\.json file as devDependencies\.
1094
+ .
1095
+ .P
1096
+ When used with the \fBnpm rm\fR command, it removes it from the devDependencies
1097
+ hash\.
1098
+ .
1099
+ .P
1100
+ Only works if there is already a package\.json file present\.
1101
+ .
1102
+ .SS "save\-optional"
1103
+ .
1104
+ .IP "\(bu" 4
1105
+ Default: false
1106
+ .
1107
+ .IP "\(bu" 4
1108
+ Type: Boolean
1109
+ .
1110
+ .IP "" 0
1111
+ .
1112
+ .P
1113
+ Save installed packages to a package\.json file as optionalDependencies\.
1114
+ .
1115
+ .P
1116
+ When used with the \fBnpm rm\fR command, it removes it from the devDependencies
1117
+ hash\.
1118
+ .
1119
+ .P
1120
+ Only works if there is already a package\.json file present\.
1121
+ .
1122
+ .SS "searchopts"
1123
+ .
1124
+ .IP "\(bu" 4
1125
+ Default: ""
1126
+ .
1127
+ .IP "\(bu" 4
1128
+ Type: String
1129
+ .
1130
+ .IP "" 0
1131
+ .
1132
+ .P
1133
+ Space\-separated options that are always passed to search\.
1134
+ .
1135
+ .SS "searchexclude"
1136
+ .
1137
+ .IP "\(bu" 4
1138
+ Default: ""
1139
+ .
1140
+ .IP "\(bu" 4
1141
+ Type: String
1142
+ .
1143
+ .IP "" 0
1144
+ .
1145
+ .P
1146
+ Space\-separated options that limit the results from search\.
1147
+ .
1148
+ .SS "searchsort"
1149
+ .
1150
+ .IP "\(bu" 4
1151
+ Default: "name"
1152
+ .
1153
+ .IP "\(bu" 4
1154
+ Type: String
1155
+ .
1156
+ .IP "\(bu" 4
1157
+ Values: "name", "\-name", "date", "\-date", "description",
1158
+ "\-description", "keywords", "\-keywords"
1159
+ .
1160
+ .IP "" 0
1161
+ .
1162
+ .P
1163
+ Indication of which field to sort search results by\. Prefix with a \fB\-\fR
1164
+ character to indicate reverse sort\.
1165
+ .
1166
+ .SS "shell"
1167
+ .
1168
+ .IP "\(bu" 4
1169
+ Default: SHELL environment variable, or "bash" on Posix, or "cmd" on
1170
+ Windows
1171
+ .
1172
+ .IP "\(bu" 4
1173
+ Type: path
1174
+ .
1175
+ .IP "" 0
1176
+ .
1177
+ .P
1178
+ The shell to run for the \fBnpm explore\fR command\.
1179
+ .
1180
+ .SS "shrinkwrap"
1181
+ .
1182
+ .IP "\(bu" 4
1183
+ Default: true
1184
+ .
1185
+ .IP "\(bu" 4
1186
+ Type: Boolean
1187
+ .
1188
+ .IP "" 0
1189
+ .
1190
+ .P
1191
+ If set to false, then ignore \fBnpm\-shrinkwrap\.json\fR files when
1192
+ installing\.
1193
+ .
1194
+ .SS "sign\-git\-tag"
1195
+ .
1196
+ .IP "\(bu" 4
1197
+ Default: false
1198
+ .
1199
+ .IP "\(bu" 4
1200
+ Type: Boolean
1201
+ .
1202
+ .IP "" 0
1203
+ .
1204
+ .P
1205
+ If set to true, then the \fBnpm version\fR command will tag the version
1206
+ using \fB\-s\fR to add a signature\.
1207
+ .
1208
+ .P
1209
+ Note that git requires you to have set up GPG keys in your git configs
1210
+ for this to work properly\.
1211
+ .
1212
+ .SS "strict\-ssl"
1213
+ .
1214
+ .IP "\(bu" 4
1215
+ Default: true
1216
+ .
1217
+ .IP "\(bu" 4
1218
+ Type: Boolean
1219
+ .
1220
+ .IP "" 0
1221
+ .
1222
+ .P
1223
+ Whether or not to do SSL key validation when making requests to the
1224
+ registry via https\.
1225
+ .
1226
+ .P
1227
+ See also the \fBca\fR config\.
1228
+ .
1229
+ .SS "tag"
1230
+ .
1231
+ .IP "\(bu" 4
1232
+ Default: latest
1233
+ .
1234
+ .IP "\(bu" 4
1235
+ Type: String
1236
+ .
1237
+ .IP "" 0
1238
+ .
1239
+ .P
1240
+ If you ask npm to install a package and don\'t tell it a specific version, then
1241
+ it will install the specified tag\.
1242
+ .
1243
+ .P
1244
+ Also the tag that is added to the package@version specified by the \fBnpm
1245
+ tag\fR command, if no explicit tag is given\.
1246
+ .
1247
+ .SS "tmp"
1248
+ .
1249
+ .IP "\(bu" 4
1250
+ Default: TMPDIR environment variable, or "/tmp"
1251
+ .
1252
+ .IP "\(bu" 4
1253
+ Type: path
1254
+ .
1255
+ .IP "" 0
1256
+ .
1257
+ .P
1258
+ Where to store temporary files and folders\. All temp files are deleted
1259
+ on success, but left behind on failure for forensic purposes\.
1260
+ .
1261
+ .SS "unicode"
1262
+ .
1263
+ .IP "\(bu" 4
1264
+ Default: true
1265
+ .
1266
+ .IP "\(bu" 4
1267
+ Type: Boolean
1268
+ .
1269
+ .IP "" 0
1270
+ .
1271
+ .P
1272
+ When set to true, npm uses unicode characters in the tree output\. When
1273
+ false, it uses ascii characters to draw trees\.
1274
+ .
1275
+ .SS "unsafe\-perm"
1276
+ .
1277
+ .IP "\(bu" 4
1278
+ Default: false if running as root, true otherwise
1279
+ .
1280
+ .IP "\(bu" 4
1281
+ Type: Boolean
1282
+ .
1283
+ .IP "" 0
1284
+ .
1285
+ .P
1286
+ Set to true to suppress the UID/GID switching when running package
1287
+ scripts\. If set explicitly to false, then installing as a non\-root user
1288
+ will fail\.
1289
+ .
1290
+ .SS "usage"
1291
+ .
1292
+ .IP "\(bu" 4
1293
+ Default: false
1294
+ .
1295
+ .IP "\(bu" 4
1296
+ Type: Boolean
1297
+ .
1298
+ .IP "" 0
1299
+ .
1300
+ .P
1301
+ Set to show short usage output (like the \-H output)
1302
+ npm help instead of complete help when doing \fBnpm\-help\fR\|\.
1303
+ .
1304
+ .SS "user"
1305
+ .
1306
+ .IP "\(bu" 4
1307
+ Default: "nobody"
1308
+ .
1309
+ .IP "\(bu" 4
1310
+ Type: String or Number
1311
+ .
1312
+ .IP "" 0
1313
+ .
1314
+ .P
1315
+ The UID to set to when running package scripts as root\.
1316
+ .
1317
+ .SS "username"
1318
+ .
1319
+ .IP "\(bu" 4
1320
+ Default: null
1321
+ .
1322
+ .IP "\(bu" 4
1323
+ Type: String
1324
+ .
1325
+ .IP "" 0
1326
+ .
1327
+ .P
1328
+ The username on the npm registry\. Set with \fBnpm adduser\fR
1329
+ .
1330
+ .SS "userconfig"
1331
+ .
1332
+ .IP "\(bu" 4
1333
+ Default: ~/\.npmrc
1334
+ .
1335
+ .IP "\(bu" 4
1336
+ Type: path
1337
+ .
1338
+ .IP "" 0
1339
+ .
1340
+ .P
1341
+ The location of user\-level configuration settings\.
1342
+ .
1343
+ .SS "umask"
1344
+ .
1345
+ .IP "\(bu" 4
1346
+ Default: 022
1347
+ .
1348
+ .IP "\(bu" 4
1349
+ Type: Octal numeric string
1350
+ .
1351
+ .IP "" 0
1352
+ .
1353
+ .P
1354
+ The "umask" value to use when setting the file creation mode on files
1355
+ and folders\.
1356
+ .
1357
+ .P
1358
+ Folders and executables are given a mode which is \fB0777\fR masked against
1359
+ this value\. Other files are given a mode which is \fB0666\fR masked against
1360
+ this value\. Thus, the defaults are \fB0755\fR and \fB0644\fR respectively\.
1361
+ .
1362
+ .SS "user\-agent"
1363
+ .
1364
+ .IP "\(bu" 4
1365
+ Default: node/{process\.version} {process\.platform} {process\.arch}
1366
+ .
1367
+ .IP "\(bu" 4
1368
+ Type: String
1369
+ .
1370
+ .IP "" 0
1371
+ .
1372
+ .P
1373
+ Sets a User\-Agent to the request header
1374
+ .
1375
+ .SS "version"
1376
+ .
1377
+ .IP "\(bu" 4
1378
+ Default: false
1379
+ .
1380
+ .IP "\(bu" 4
1381
+ Type: boolean
1382
+ .
1383
+ .IP "" 0
1384
+ .
1385
+ .P
1386
+ If true, output the npm version and exit successfully\.
1387
+ .
1388
+ .P
1389
+ Only relevant when specified explicitly on the command line\.
1390
+ .
1391
+ .SS "versions"
1392
+ .
1393
+ .IP "\(bu" 4
1394
+ Default: false
1395
+ .
1396
+ .IP "\(bu" 4
1397
+ Type: boolean
1398
+ .
1399
+ .IP "" 0
1400
+ .
1401
+ .P
1402
+ If true, output the npm version as well as node\'s \fBprocess\.versions\fR
1403
+ hash, and exit successfully\.
1404
+ .
1405
+ .P
1406
+ Only relevant when specified explicitly on the command line\.
1407
+ .
1408
+ .SS "viewer"
1409
+ .
1410
+ .IP "\(bu" 4
1411
+ Default: "man" on Posix, "browser" on Windows
1412
+ .
1413
+ .IP "\(bu" 4
1414
+ Type: path
1415
+ .
1416
+ .IP "" 0
1417
+ .
1418
+ .P
1419
+ The program to use to view help content\.
1420
+ .
1421
+ .P
1422
+ Set to \fB"browser"\fR to view html help content in the default web browser\.
1423
+ .
1424
+ .SH "SEE ALSO"
1425
+ .
1426
+ .IP "\(bu" 4
1427
+ npm help config
1428
+ .
1429
+ .IP "\(bu" 4
1430
+ npm help config
1431
+ .
1432
+ .IP "\(bu" 4
1433
+ npm help npmrc
1434
+ .
1435
+ .IP "\(bu" 4
1436
+ npm help scripts
1437
+ .
1438
+ .IP "\(bu" 4
1439
+ npm help folders
1440
+ .
1441
+ .IP "\(bu" 4
1442
+ npm help npm
1443
+ .
1444
+ .IP "" 0
1445
+