forked from yongjun21/loess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@fgregg/loess",
"version": "1.4.2",
"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 --require @babel/register"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/datamade/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": "^11.3.2"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/register": "^7",
"@babel/preset-env": "^7",
"chai": "^4",
"mocha": "^10.1.0",
"standard": "^17.0.0"
}
}