| 1234567891011121314151617181920212223242526272829303132333435 | {  "name": "fit-curve",  "version": "0.2.0",  "description": "JavaScript implementation of Philip J. Schneider's \"Algorithm for Automatically Fitting Digitized Curves\" from the book \"Graphics Gems\"",  "main": "lib/fit-curve.js",  "types": "fit-curve.d.ts",  "scripts": {    "test": "mocha",    "prepublish": "mkdir lib || script/build.sh"  },  "homepage": "https://github.com/soswow/fit-curve",  "bugs": {    "url": "https://github.com/soswow/fit-curve/issues",    "email": "soswow@gmail.com"  },  "author": "Philip J. Schneider",  "contributors": [    "Volker Poplawski <volkerp>",    "Aleksandr Motsjonov <soswow>",    "<Yay295>",    "Andreas Borgen <Sphinxxxx>",    "Tom Brewe <nylki>"  ],  "license": "MIT",  "devDependencies": {    "babel-cli": "^6.18.0",    "babel-plugin-transform-es2015-modules-umd": "^6.18.0",    "babel-preset-es2015": "^6.18.0",    "babel-preset-es2015-loose": "^8.0.0",    "babel-preset-stage-2": "^6.18.0",    "chai": "^3.5.0",    "google-closure-compiler": "^20200426.0.0",    "mocha": "^7.1.2"  }}
 |