-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "shaman",
"description": "Machine Learning library for node.js",
"version": "0.3.2",
"keywords": [
"machine learning",
"linear regression",
"statistics",
"gradient descent algorithm",
"clustering",
"k-means",
"kmeans"
],
"homepage": "https://github.com/luccastera/shaman",
"author": {
"name": "Luc Castera",
"email": "luc.castera@gmail.com",
"url": "http://luccastera.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/luccastera/shaman.git"
},
"main": "index.js",
"dependencies": {
"sylvester": "0.0.21",
"underscore": "1.7.0"
},
"devDependencies": {
"mocha": "1.21.5",
"jshint": "2.5.6",
"csv-parse": "0.0.6",
"plotly": "0.2.13",
"underscore": "1.7.0",
"sinon": "1.10.3"
},
"browserDependencies": {
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec spec.js",
"jshint": "./node_modules/jshint/bin/jshint index.js spec.js"
},
"bugs": {
"url": "https://github.com/luccastera/shaman/issues"
},
"directories": {
"example": "examples"
}
}