UNPKG

loess

Version:

JavaScript implementation of the Locally-Weighted Regression package originally written in C by Cleveland, Grosse and Shyu (1992)

44 lines (43 loc) 1.13 kB
{ "name": "loess", "version": "1.3.5", "description": "JavaScript implementation of the Locally-Weighted Regression package originally written in C by Cleveland, Grosse and Shyu (1992)", "main": "dist/index.js", "scripts": { "build": "rm -rf dist && mkdir dist && babel src --out-dir dist", "prepublish": "npm run build && npm run test", "test": "standard && mocha --compilers js:babel-core/register" }, "repository": { "type": "git", "url": "git+https://github.com/yongjun21/loess.git" }, "author": "Yong Jun", "license": "ISC", "bugs": { "url": "https://github.com/yongjun21/loess/issues" }, "homepage": "https://github.com/yongjun21/loess#readme", "keywords": [ "statistic", "regression", "smoothing", "fitting", "graph", "plot", "utility" ], "dependencies": { "gaussian": "^1.0.0", "lodash.sortby": "^4.0.2", "lodash.zip": "^4.0.0", "mathjs": "^3.18.0" }, "devDependencies": { "babel-cli": "^6.4.5", "babel-preset-es2015": "^6.3.13", "chai": "^3.5.0", "mocha": "^2.4.5", "standard": "^5.4.1" } }