package.json 534 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "gitconfiglocal",
  3. "version": "1.0.0",
  4. "description": "parse the .git/config file into a useful data structure",
  5. "files": [
  6. "index.js"
  7. ],
  8. "scripts": {
  9. "test": "node test/test.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/soldair/node-gitconfiglocal.git"
  14. },
  15. "keywords": [
  16. "git",
  17. "config"
  18. ],
  19. "author": "Ryan Day",
  20. "license": "BSD",
  21. "readmeFilename": "README.md",
  22. "dependencies": {
  23. "ini": "^1.3.2"
  24. },
  25. "devDependencies": {
  26. "tape": "^3.4.0"
  27. }
  28. }