-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://json.schemastore.org/package",
"name": "munkres",
"version": "2.0.4",
"description": "A lightweight and efficient implementation of the Munkres (Hungarian) algorithm for optimal assignment in square and rectangular matrices.",
"license": "MIT",
"author": "Michael Rojas <[email protected]> (https://github.com/havelessbemore)",
"homepage": "https://github.com/havelessbemore/munkres",
"bugs": "https://github.com/havelessbemore/munkres/issues",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"type": "module",
"main": "./dist/munkres.cjs",
"module": "./dist/munkres.mjs",
"types": "./dist/munkres.d.ts",
"exports": {
".": {
"import": "./dist/munkres.mjs",
"require": "./dist/munkres.cjs",
"types": "./dist/munkres.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/havelessbemore/munkres.git"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"bench:ci": "tsx ./benchmarks/ci.bench.ts",
"bench": "tsx --max-old-space-size=2560 ./benchmarks/munkres.bench.ts",
"build": "rimraf dist && tsc && rollup -c",
"build:docs": "rimraf docs && typedoc",
"format": "prettier . --write",
"lint": "eslint .",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"keywords": [
"algorithm",
"assignment",
"bipartite",
"combinatorial optimization",
"hungarian",
"linear assignment",
"kuhn",
"matrix",
"munkres",
"optimal",
"optimization"
],
"devDependencies": {
"@eslint/js": "^9.7.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"commander": "^12.1.0",
"esbuild": "^0.23.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.5.2",
"tinybench": "^2.9.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"tsx": "^4.17.0",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
}
}