component.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "vue",
  3. "version": "0.10.6",
  4. "main": "src/main.js",
  5. "author": "Evan You <yyx990803@gmail.com>",
  6. "description": "Simple, Fast & Composable MVVM for building interative interfaces",
  7. "keywords": ["mvvm", "framework", "data binding"],
  8. "license": "MIT",
  9. "scripts": [
  10. "src/main.js",
  11. "src/emitter.js",
  12. "src/config.js",
  13. "src/utils.js",
  14. "src/fragment.js",
  15. "src/compiler.js",
  16. "src/viewmodel.js",
  17. "src/binding.js",
  18. "src/observer.js",
  19. "src/directive.js",
  20. "src/exp-parser.js",
  21. "src/template-parser.js",
  22. "src/text-parser.js",
  23. "src/deps-parser.js",
  24. "src/filters.js",
  25. "src/transition.js",
  26. "src/batcher.js",
  27. "src/directives/index.js",
  28. "src/directives/if.js",
  29. "src/directives/repeat.js",
  30. "src/directives/on.js",
  31. "src/directives/model.js",
  32. "src/directives/with.js",
  33. "src/directives/html.js",
  34. "src/directives/style.js",
  35. "src/directives/partial.js",
  36. "src/directives/view.js"
  37. ]
  38. }