-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 1.1 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
{
"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": "^7.5.1"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"standard": "^5.4.1"
}
}