UNPKG

mgraph.graph

Version:

Modern graph data structure for JavaScript – a refactoring of ngraph.graph using mgraph.events

72 lines (71 loc) 1.78 kB
{ "name": "mgraph.graph", "version": "1.0.2", "type": "module", "description": "Modern graph data structure for JavaScript – a refactoring of ngraph.graph using mgraph.events", "main": "index.js", "module": "dist/mgraph.graph.esm.js", "unpkg": "dist/mgraph.graph.umd.min.js", "jsdelivr": "dist/mgraph.graph.umd.min.js", "types": "index.d.ts", "scripts": { "test": "vitest", "test:run": "vitest run", "test:ui": "vitest --ui", "build": "rollup -c", "prepublishOnly": "npm run test:run && npm run build", "bench": "node benchmarks/performance.js" }, "files": [ "index.js", "index.d.ts", "dist/", "LICENSE", "README.md" ], "repository": { "type": "git", "url": "git+https://github.com/mfeldman143/mgraph.graph.git" }, "keywords": [ "graph", "graph theory", "edge", "vertex", "node", "network", "connection", "mgraph", "ngraph", "javascript", "data structure" ], "author": "Michael Feldman", "contributors": [ { "name": "Andrei Kashcha", "url": "https://github.com/anvaka", "note": "Original author of ngraph.graph" } ], "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/mfeldman143/mgraph.graph/issues" }, "homepage": "https://github.com/mfeldman143/mgraph.graph#readme", "dependencies": { "mgraph.events": "^1.0.0" }, "devDependencies": { "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@vitest/ui": "^3.1.4", "benchmark": "^2.1.4", "mgraph.random": "^1.0.0", "rollup": "^4.41.1", "vitest": "^3.1.4" }, "engines": { "node": ">=16.0.0" } }