mirror of
https://github.com/anvaka/ngraph.path.git
synced 2025-12-08 19:55:59 +00:00
32 lines
710 B
JSON
32 lines
710 B
JSON
{
|
|
"name": "ngraph.path",
|
|
"version": "1.1.0",
|
|
"description": "Path finding in a graph",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "browserify index.js -s ngraphPath -o dist/ngraph.path.js && uglifyjs dist/ngraph.path.js -o dist/ngraph.path.min.js",
|
|
"test": "tap test/*.js"
|
|
},
|
|
"keywords": [
|
|
"ngraph",
|
|
"path",
|
|
"find",
|
|
"astar",
|
|
"a-star",
|
|
"pathfinding"
|
|
],
|
|
"author": "Andrei Kashcha",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anvaka/ngraph.path"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^16.2.3",
|
|
"ngraph.fromdot": "^0.4.0",
|
|
"ngraph.graph": "0.0.15",
|
|
"tap": "^12.5.3",
|
|
"uglify-js": "^3.4.9"
|
|
}
|
|
}
|