package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "global-prefix",
  3. "description": "Get the npm global path prefix.",
  4. "version": "1.0.2",
  5. "homepage": "https://github.com/jonschlinkert/global-prefix",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Alexandr Bogachev (https://github.com/rmbaad)",
  9. "Brian Woodward (https://twitter.com/doowb)",
  10. "Charlike Mike Reagent (https://i.am.charlike.online)",
  11. "JasonChang (https://packagist.org/packages/jason-chang)",
  12. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  13. "Jorrit Schippers (https://www.ncode.nl)",
  14. "Mathias Rasmussen (chrome://dino)",
  15. "Ross Fenning (http://rossfenning.co.uk)"
  16. ],
  17. "repository": "jonschlinkert/global-prefix",
  18. "bugs": {
  19. "url": "https://github.com/jonschlinkert/global-prefix/issues"
  20. },
  21. "license": "MIT",
  22. "files": [
  23. "index.js"
  24. ],
  25. "main": "index.js",
  26. "engines": {
  27. "node": ">=0.10.0"
  28. },
  29. "scripts": {
  30. "test": "mocha"
  31. },
  32. "dependencies": {
  33. "expand-tilde": "^2.0.2",
  34. "homedir-polyfill": "^1.0.1",
  35. "ini": "^1.3.4",
  36. "is-windows": "^1.0.1",
  37. "which": "^1.2.14"
  38. },
  39. "devDependencies": {
  40. "gulp-format-md": "^0.1.12",
  41. "mocha": "^3.4.2"
  42. },
  43. "keywords": [
  44. "global",
  45. "module",
  46. "modules",
  47. "npm",
  48. "path",
  49. "prefix",
  50. "resolve"
  51. ],
  52. "verb": {
  53. "run": true,
  54. "toc": false,
  55. "layout": "default",
  56. "tasks": [
  57. "readme"
  58. ],
  59. "plugins": [
  60. "gulp-format-md"
  61. ],
  62. "related": {
  63. "list": [
  64. "global-modules",
  65. "global-paths"
  66. ]
  67. },
  68. "reflinks": [
  69. "verb"
  70. ],
  71. "lint": {
  72. "reflinks": true
  73. }
  74. }
  75. }