graphs-adt
Version:
Graph data structure with path finding and traversing algorithms
49 lines (48 loc) • 977 B
JSON
{
"name": "graphs-adt",
"version": "0.1.9",
"description": "Graph data structure with path finding and traversing algorithms",
"repository": {
"type": "git",
"url": "https://github.com/ciaranashton/graphs-adt.git"
},
"keywords": [
"graph",
"dijkstra",
"path",
"finding",
"find path",
"path finder",
"shortest",
"shortest path",
"dfs",
"depth first search",
"bfs",
"bredth first search"
],
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"build": "tsc -p .",
"test": "jest --watch"
},
"author": "Ciaran Ashton",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.12",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"js",
"ts",
"node"
]
}
}