UNPKG

entropyx

Version:

A simple data mining library, written in TypeScript

73 lines (72 loc) 1.88 kB
{ "name": "entropyx", "version": "0.0.6", "description": "A simple data mining library, written in TypeScript", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "start": "npm run build && node dist/index.js", "start:dev": "ts-node -r tsconfig-paths/register src/index.ts", "test": "echo \"Error: no test specified\" && exit 1", "build": "tsc -p ./tsconfig.build.json", "publish": "npm run build && npm publish" }, "repository": { "type": "git", "url": "git+https://github.com/ArioAtlas/entropyx.git" }, "keywords": [ "machine-library", "ml", "clustering", "community-detection", "network", "distance", "dimensionality-reduction", "ranking", "kmeans", "dbscan", "hierarchical", "pca", "t-sne", "pagerank", "fast-newman", "sammon-mapping" ], "author": { "name": "Omid Golshan", "email": "omid.gt21@gmail.com" }, "devDependencies": { "@types/jest": "^29.5.2", "@types/lodash": "^4.17.14", "@types/node": "^20.3.1", "@types/seedrandom": "^3.0.8", "@types/supertest": "^6.0.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "autoprefixer": "^10.4.20", "eslint": "^8.0.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "source-map-support": "^0.5.21", "supertest": "^7.0.0", "ts-jest": "^29.1.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typescript": "^5.1.3", "typescript-transform-paths": "^3.5.3" }, "license": "MIT", "dependencies": { "ansi-chart": "^0.0.5", "fast-csv": "^5.0.2", "lodash": "^4.17.21", "ml-hclust": "^3.1.0", "ml-matrix": "^6.12.0", "seedrandom": "^3.0.5" } }