manifest.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "remotes": {
  3. "origin": {
  4. "fetch": "git://github.com/cloudera/%(name)s.git"
  5. },
  6. "anutron": {
  7. "fetch": "git://github.com/anutron/%(name)s.git"
  8. },
  9. "mootools": {
  10. "fetch": "git://github.com/mootools/%(name)s.git"
  11. }
  12. },
  13. "projects": {
  14. "mootools-core": {
  15. "dir": "core",
  16. "track-indirect": "core.hash"
  17. },
  18. "mootools-more": {
  19. "dir": "more",
  20. "track-indirect": "more.hash"
  21. },
  22. "art": {
  23. "track-indirect": "art.hash"
  24. },
  25. "clientcide": {
  26. "track-indirect": "clientcide.hash"
  27. },
  28. "mootools-color": {
  29. "dir": "color",
  30. "track-indirect": "color.hash",
  31. "from-remote": "anutron",
  32. "remotes": ["anutron"]
  33. },
  34. "mootools-touch": {
  35. "dir": "touch",
  36. "track-indirect": "touch.hash"
  37. },
  38. "mootools-table": {
  39. "dir": "table",
  40. "track-indirect": "table.hash",
  41. "from-remote": "anutron",
  42. "remotes": ["anutron"]
  43. },
  44. "art-widgets": {
  45. "dir": "widgets",
  46. "track-indirect": "widgets.hash",
  47. "from-remote": "origin",
  48. "remotes": ["origin"]
  49. },
  50. "slick": {
  51. "track-indirect": "slick.hash",
  52. "from-remote": "anutron",
  53. "remotes": ["anutron"]
  54. }
  55. }
  56. }