@wemap/salesman.js
Version:
Solves the traveling salesman problem using simulated annealing.
34 lines (33 loc) • 832 B
JSON
{
"name": "@wemap/salesman.js",
"version": "2.1.0",
"description": "Solves the traveling salesman problem using simulated annealing.",
"main": "salesman.js",
"types": "salesman.d.ts",
"scripts": {
"test": "node test.js",
"prepare": "node salesman.js && node node_modules/jsdoc-to-markdown/bin/cli.js --files salesman.js > README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/lovasoa/salesman.js.git"
},
"keywords": [
"traveling",
"salesman",
"simulated",
"annealing",
"algorithm",
"path",
"points"
],
"author": "Ophir LOJKINE",
"license": "Apache v2",
"bugs": {
"url": "https://github.com/wemap/salesman.js/issues"
},
"homepage": "https://github.com/wemap/salesman.js",
"devDependencies": {
"jsdoc-to-markdown": "^6.0.1"
}
}