package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "parse-git-config",
  3. "description": "Parse `.git/config` into a JavaScript object. sync or async.",
  4. "version": "3.0.0",
  5. "homepage": "https://github.com/jonschlinkert/parse-git-config",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "j. suárez (http://suarez.systems)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  10. "Sam Holmes (https://samholmes.net)"
  11. ],
  12. "repository": "jonschlinkert/parse-git-config",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/parse-git-config/issues"
  15. },
  16. "license": "MIT",
  17. "files": [
  18. "index.js"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=8"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "git-config-path": "^2.0.0",
  29. "ini": "^1.3.5"
  30. },
  31. "devDependencies": {
  32. "gulp-format-md": "^2.0.0",
  33. "mocha": "^5.2.0"
  34. },
  35. "keywords": [
  36. "config",
  37. "git",
  38. "parse"
  39. ],
  40. "verb": {
  41. "run": true,
  42. "toc": false,
  43. "layout": "default",
  44. "tasks": [
  45. "readme"
  46. ],
  47. "plugins": [
  48. "gulp-format-md"
  49. ],
  50. "related": {
  51. "list": [
  52. "git-user-name",
  53. "git-username",
  54. "parse-author",
  55. "parse-authors",
  56. "parse-github-url",
  57. "parse-gitignore"
  58. ]
  59. },
  60. "lint": {
  61. "reflinks": true
  62. }
  63. }
  64. }