package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "fit-curve",
  3. "version": "0.2.0",
  4. "description": "JavaScript implementation of Philip J. Schneider's \"Algorithm for Automatically Fitting Digitized Curves\" from the book \"Graphics Gems\"",
  5. "main": "lib/fit-curve.js",
  6. "types": "fit-curve.d.ts",
  7. "scripts": {
  8. "test": "mocha",
  9. "prepublish": "mkdir lib || script/build.sh"
  10. },
  11. "homepage": "https://github.com/soswow/fit-curve",
  12. "bugs": {
  13. "url": "https://github.com/soswow/fit-curve/issues",
  14. "email": "soswow@gmail.com"
  15. },
  16. "author": "Philip J. Schneider",
  17. "contributors": [
  18. "Volker Poplawski <volkerp>",
  19. "Aleksandr Motsjonov <soswow>",
  20. "<Yay295>",
  21. "Andreas Borgen <Sphinxxxx>",
  22. "Tom Brewe <nylki>"
  23. ],
  24. "license": "MIT",
  25. "devDependencies": {
  26. "babel-cli": "^6.18.0",
  27. "babel-plugin-transform-es2015-modules-umd": "^6.18.0",
  28. "babel-preset-es2015": "^6.18.0",
  29. "babel-preset-es2015-loose": "^8.0.0",
  30. "babel-preset-stage-2": "^6.18.0",
  31. "chai": "^3.5.0",
  32. "google-closure-compiler": "^20200426.0.0",
  33. "mocha": "^7.1.2"
  34. }
  35. }