package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "git-config-path",
  3. "description": "Resolve the path to the user's local or global .gitconfig.",
  4. "version": "1.0.1",
  5. "homepage": "https://github.com/jonschlinkert/git-config-path",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/git-config-path",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/git-config-path/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "extend-shallow": "^2.0.1",
  24. "fs-exists-sync": "^0.1.0",
  25. "homedir-polyfill": "^1.0.0"
  26. },
  27. "devDependencies": {
  28. "gulp-format-md": "^0.1.7",
  29. "mocha": "^2.4.5"
  30. },
  31. "keywords": [
  32. "config",
  33. "git",
  34. "gitconfig",
  35. "global",
  36. "path",
  37. "resolve"
  38. ],
  39. "verb": {
  40. "run": true,
  41. "toc": false,
  42. "layout": "default",
  43. "tasks": [
  44. "readme"
  45. ],
  46. "plugins": [
  47. "gulp-format-md"
  48. ],
  49. "related": {
  50. "list": [
  51. "git-branch",
  52. "git-repo-name",
  53. "git-user-name",
  54. "git-username",
  55. "is-git-url",
  56. "parse-git-config"
  57. ]
  58. },
  59. "reflinks": [
  60. "verb"
  61. ],
  62. "lint": {
  63. "reflinks": true
  64. }
  65. }
  66. }