forked from dcmox/tspwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 KB
/
package.json
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
41
42
43
44
45
46
{
"name": "tspwc",
"version": "1.0.6",
"private": false,
"description": "TSP-WC Algorithm - Solving the traveling salesman problem with conditions",
"main": "tspwc.js",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"typescript": "3.7.2",
"@types/jest": "^24.0.24",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"jest": "^24.9.0",
"sinon": "^7.5.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1"
},
"scripts": {
"test": "jest tests/*",
"build": "npm run build:main && npm run build:demo",
"build:main": "tsc tspwc.ts",
"build:demo": "tsc tests/usage.ts",
"watch": "tsc -w tests/usage.ts",
"test-usage": "node tests/usage.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmox/tspwc.git"
},
"keywords": [
"traveling salesman",
"tsp",
"branch and bound",
"time window",
"conditions",
"tspwc"
],
"author": "Daniel Moxon ([email protected])",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/dcmox/tspwc/issues"
},
"homepage": "https://github.com/dcmox/tspwc#readme"
}