ngraph.path/package.json
2023-01-13 18:55:30 -08:00

32 lines
768 B
JSON

{
"name": "ngraph.path",
"version": "1.4.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 --branches=70 --lines=80 --statements=80 --functions=80 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.5.1",
"ngraph.fromdot": "^7.0.0",
"ngraph.graph": "^20.0.0",
"tap": "^16.3.0",
"uglify-js": "^3.10.0"
}
}