bower.json 520 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "c3",
  3. "main": [
  4. "c3.css",
  5. "c3.js"
  6. ],
  7. "homepage": "https://github.com/masayuki0812/c3",
  8. "authors": [
  9. "Masayuki Tanaka <masayuki0812@mac.com>"
  10. ],
  11. "description": "D3-based reusable chart library",
  12. "keywords": [
  13. "chart",
  14. "d3"
  15. ],
  16. "license": "MIT",
  17. "ignore": [
  18. "**/.*",
  19. "node_modules",
  20. "bower_components",
  21. "htdocs",
  22. "spec",
  23. "src/**/*.js",
  24. "package.json",
  25. "component.json",
  26. "Gruntfile.*"
  27. ],
  28. "dependencies": {
  29. "d3": "^4.12.0"
  30. }
  31. }