-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "commons-math-interpolation",
"version": "2.2.3",
"description": "A partial port of the Apache Commons Math Interpolation package, including Akima cubic spline interpolation and LOESS/LOWESS local regression.",
"type": "module",
"types": "Index.d.ts",
"main": "Index.js",
"keywords": [
"math",
"interpolation",
"akima",
"cubic spline",
"LOESS",
"LOWESS",
"local regression",
"apache commons math"
],
"license": "MIT",
"homepage": "http://www.source-code.biz/snippets/typescript/akima",
"repository": "github:chdh/commons-math-interpolation",
"contributors": [
{
"name": "Christian d'Heureuse",
"email": "[email protected]",
"url": "http://www.source-code.biz"
}
],
"scripts": {
"clean": "node build.js clean",
"build": "node build.js build",
"prepack": "node build.js verifyCurrentDirIsDist",
"doPack": "cd dist && npm pack",
"doPublish": "cd dist && npm publish"
}
}