-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 914 Bytes
/
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
{
"name": "skmeans",
"version": "0.11.3",
"description": "Super fast simple k-means and k-means++ clustering for unidimiensional and multidimensional data. Works in node and browser",
"author": "David Gómez Matarrodona <[email protected]>",
"url": "https://github.com/owner/project/issues",
"email": "[email protected]",
"main": "dist/node/main.js",
"license": "MIT",
"repository": "solzimer/skmeans",
"keywords": [
"math",
"k-means",
"k-means++",
"kmeans++",
"kmeans",
"simple",
"cluster",
"fast",
"unidimiensional",
"multidimensional"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-uglify": "^4.0.1",
"load-grunt-tasks": "^4.0.0"
}
}