bower.json 732 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "fit-curve",
  3. "version": "0.1.4",
  4. "homepage": "https://github.com/soswow/fit-curve",
  5. "authors": [
  6. "Philip J. Schneider <original version>",
  7. "Volker Poplawski <Python port>",
  8. "Aleksandr Motsjonov <soswow@gmail.com>"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/soswow/fit-curve.git"
  13. },
  14. "description": "JavaScript implementation of Philip J. Schneider's \"Algorithm for Automatically Fitting Digitized Curves\" from the book \"Graphics Gems\"",
  15. "main": "lib/fit-curve.js",
  16. "moduleType": [
  17. "amd",
  18. "globals",
  19. "node"
  20. ],
  21. "ignore": [
  22. "**/.*",
  23. "node_modules",
  24. "bower_components",
  25. "test",
  26. "package.json"
  27. ],
  28. "license": "MIT"
  29. }