package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "git-config-path",
  3. "description": "Resolve the path to the user's local or global .gitconfig.",
  4. "version": "2.0.0",
  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": ">=4"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "devDependencies": {
  23. "gulp-format-md": "^2.0.0",
  24. "mocha": "^5.2.0"
  25. },
  26. "keywords": [
  27. "config",
  28. "git",
  29. "gitconfig",
  30. "global",
  31. "path",
  32. "resolve"
  33. ],
  34. "verb": {
  35. "run": true,
  36. "toc": false,
  37. "layout": "default",
  38. "tasks": [
  39. "readme"
  40. ],
  41. "plugins": [
  42. "gulp-format-md"
  43. ],
  44. "related": {
  45. "list": [
  46. "git-branch",
  47. "git-repo-name",
  48. "git-user-name",
  49. "git-username",
  50. "is-git-url",
  51. "parse-git-config"
  52. ]
  53. },
  54. "lint": {
  55. "reflinks": true
  56. }
  57. }
  58. }