directed-graph-typed
Version:
153 lines (152 loc) • 3.29 kB
JSON
{
"name": "directed-graph-typed",
"version": "2.0.3",
"description": "Directed Graph",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && npx tsc",
"lint": "eslint --fix \"src/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"test": "jest",
"build:docs": "typedoc --out docs ./src",
"deps:check": "dependency-cruiser src",
"build:publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrwusa/data-structure-typed.git"
},
"keywords": [
"Directed Graph",
"directed graph",
"directedgraph",
"directed-graph",
"directed",
"Directed",
"digraph",
"javascript",
"java script",
"JavaScript",
"js",
"typescript",
"type script",
"TypeScript",
"ts",
"vertex",
"Vertex",
"node",
"Node",
"edge",
"Edge",
"graph theory",
"Graph Theory",
"graph structure",
"weighted",
"Weighted",
"unweighted",
"Unweighted",
"graph",
"adjacency",
"Adjacency",
"connectivity",
"path",
"cycle",
"acyclic",
"traversal",
"depth",
"Depth",
"breadth",
"Breadth",
"first",
"search",
"depth first search",
"dfs",
"DFS",
"breadth first search",
"breadth-first search",
"bfs",
"BFS",
"graph algorithms",
"graph representation",
"connectivity matrix",
"adjacency list",
"adjacency matrix",
"matrix",
"network",
"node degree",
"sparse graph",
"dense graph",
"directed cycle",
"directed acyclic graph",
"DAG",
"topologic",
"topological",
"sorting",
"strongly connected components",
"weighted digraph",
"directed weighted edge",
"data",
"structure",
"structures",
"data structure",
"datastructure",
"data-structure",
"data structures",
"datastructures",
"data-structures",
"in data structures",
"in data structure",
"DataStructure",
"DataStructures",
"iterative",
"Node.js",
"CommonJS",
"ES6",
"UMD",
"esmodule",
"java.util",
"c++ stl",
"c++ std",
"Python collections",
"System.Collections.Generic",
"STL",
"stl",
"util",
"collection",
"Collection",
"collections",
"Collections",
"insertion",
"deletion",
"performance",
"OOP",
"documentation",
"visualization"
],
"author": "Pablo Zeng zrwusa@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/zrwusa/data-structure-typed/issues"
},
"homepage": "https://data-structure-typed-docs.vercel.app",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^29.6.2",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typescript": "^4.9.5"
},
"dependencies": {
"data-structure-typed": "^2.0.3"
}
}