-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "warehouse-path",
"version": "1.0.0",
"description": "Lib allowing you to compare routing algorithm performance for warehouse picker tour.",
"main": "index.js",
"scripts": {
"test": "nyc mocha --timeout=3000",
"clean": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremyfourna/warehouse-path.git"
},
"keywords": [
"warehouse",
"pathfinding",
"picker",
"traveling-salesman"
],
"author": "Jeremy Fourna <jeremyfourna@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jeremyfourna/warehouse-path/issues"
},
"homepage": "https://github.com/jeremyfourna/warehouse-path#readme",
"dependencies": {
"pathfinding": "^0.4.18",
"ramda": "^0.25.0",
"warehouse-algos-closest-neighbour": "^0.1.0",
"warehouse-algos-ellipse": "^0.1.0",
"warehouse-algos-sshaped": "^0.1.0",
"warehouse-picker-tour": "^0.1.0"
},
"devDependencies": {
"chai": "^4.0.1",
"eslint": "^4.14.0",
"mocha": "^3.4.2",
"nyc": "^11.0.1"
}
}