ml-disjoint-set
Version:
Efficient disjoint-set data structure implementation
40 lines (39 loc) • 979 B
JSON
{
"name": "ml-disjoint-set",
"version": "1.0.0",
"description": "Efficient disjoint-set data structure implementation",
"main": "./src/DisjointSet.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src test",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-mocha && npm run eslint",
"test-mocha": "mocha --require should --reporter mocha-better-spec-reporter"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/disjoint-set.git"
},
"keywords": [
"machine",
"learning",
"data",
"mining",
"datamining"
],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/disjoint-set/issues"
},
"homepage": "https://github.com/mljs/disjoint-set#readme",
"devDependencies": {
"eslint": "^3.0.1",
"eslint-config-cheminfo": "^1.0.0",
"mocha": "^2.5.3",
"mocha-better-spec-reporter": "^3.0.2",
"should": "^10.0.0"
}
}