-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 828 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 828 Bytes
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
{
"name": "node-ml",
"description": "A Collection of Machine Learning algorithms built for use with NodeJS",
"version": "1.0.2",
"engines": {
"node": ">=10.9"
},
"dependencies": {
"sylvester": ">= 0.0.8"
},
"scripts" : {
"test" : "tap ./test/*.js"
},
"devDependencies" : {
"tap" : "~0.4.0"
},
"repository" :
{ "type" : "git"
, "url" : "http://github.com/miketheprogrammer/node-ml.git"
},
"author": "Michael Hernandez <michael.hernandez1988@gmail.com>",
"keywords": ["machine", "learning", "ml", "classifier", "clustering", "bayes", "k-means", "logistic", "regression", "perceptron", "neural","net"],
"main": "./lib/index.js",
"maintainers": [{
"name": "Michael Hernandez",
"email": "michael.hernandez1988@gmail.com",
"web": "http://miketheprogrammer.com"
}]
}