-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "js-regression",
"version": "1.0.10",
"description": "Package implements linear regression and logistic regression",
"author": "Xianshun Chen",
"contributors": [
"Xianshun Chen <[email protected]>"
],
"license": "MIT",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"js-stats": "./src/jsregression.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chen0040/js-regression.git"
},
"keywords": [
"linear regression",
"logistic regression",
"polynomial regression",
"multiple linear regression",
"classification",
"binary classification",
"multi-class classification",
"prediction",
"linear models",
"least squares",
"gradient descent",
"regression"
],
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^3.0.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"js-datasets-iris": "^1.0.1",
"mocha": "^3.4.1"
},
"bugs": {
"url": "https://github.com/chen0040/js-regression/issues"
},
"homepage": "https://github.com/chen0040/js-regression#readme"
}