re.order
Version:
An extremely fast pathfinder tool/algorithm to determine optimal order execution sequence.
34 lines (33 loc) • 1.15 kB
JSON
{
"name": "re.order",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/SemkoDev/re.order.git"
},
"main": "dist/re.order.js",
"description":
"An extremely fast pathfinder tool/algorithm to determine optimal order execution sequence.",
"license": "MIT",
"scripts": {
"build":
"rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules --ignore tests --copy-files",
"fix": "prettier --single-quote --write src/**/*.js package.json *.md",
"test":
"mocha --timeout 60000 --bail --ui bdd $(find src -name \"*.test.js\")",
"make": "yarn run test && yarn run fix && yarn run build"
},
"files": ["src", "dist", "README.md", "LIECENSE.md"],
"keywords": ["telematics", "pathfinder", "optimization", "routing"],
"homepage": "https://semkodev.com",
"author": "Roman Semko <roman@deviota.com> (http://twitter.com/RomanSemko)",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chain": "^0.1.3",
"mocha": "^5.0.0",
"prettier": "^1.10.2"
}
}