package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "parse-git-config",
  3. "description": "Parse `.git/config` into a JavaScript object. sync or async.",
  4. "version": "2.0.3",
  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": ">=6"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "expand-tilde": "^2.0.2",
  29. "git-config-path": "^1.0.1",
  30. "ini": "^1.3.5"
  31. },
  32. "devDependencies": {
  33. "gulp-format-md": "^1.0.0",
  34. "homedir-polyfill": "^1.0.1",
  35. "mocha": "^3.5.3"
  36. },
  37. "keywords": [
  38. "config",
  39. "git",
  40. "parse"
  41. ],
  42. "verb": {
  43. "run": true,
  44. "toc": false,
  45. "layout": "default",
  46. "tasks": [
  47. "readme"
  48. ],
  49. "plugins": [
  50. "gulp-format-md"
  51. ],
  52. "related": {
  53. "list": [
  54. "git-user-name",
  55. "git-username",
  56. "parse-author",
  57. "parse-authors",
  58. "parse-github-url",
  59. "parse-gitignore"
  60. ]
  61. },
  62. "lint": {
  63. "reflinks": true
  64. }
  65. }
  66. }