12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "density-clustering",
- "version": "1.3.0",
- "description": "Density Based Clustering in JavaScript",
- "main": "./lib/index.js",
- "directories": {
- "example": "example",
- "test": "test"
- },
- "dependencies": {},
- "devDependencies": {
- "mocha": "^2.2.4",
- "should": "^5.2.0",
- "gulp": "^3.9.0",
- "gulp-concat": "^2.5.2",
- "gulp-uglify": "^1.2.0",
- "gulp-resolve-dependencies": "^2.1.0"
- },
- "scripts": {
- "test": "mocha -R spec"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/LukaszKrawczyk/density-clustering.git"
- },
- "keywords": [
- "DBSCAN",
- "OPTICS",
- "K-Means",
- "clustering",
- "cluster",
- "analysis",
- "machine",
- "learning",
- "statistics"
- ],
- "author": {
- "name": "Lukasz Krawczyk"
- },
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/LukaszKrawczyk/density-clustering/issues"
- },
- "homepage": "https://github.com/LukaszKrawczyk/density-clustering"
- }
|