forked from lovasoa/highs-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 937 Bytes
/
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
{
"name": "highs",
"version": "0.7.3",
"description": "Mixed integer linear programming library, built by compiling a high-performance C++ solver developed by the University of Edinburgh (HiGHS) to WebAssembly.",
"main": "build/highs.js",
"types": "types.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "tsc && node tests/test.js",
"build": "./build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovasoa/highs-js.git"
},
"keywords": [
"linear programming",
"LP",
"MILP",
"solver",
"maths",
"or",
"optimization"
],
"author": "Ophir LOJKINE",
"license": "MIT",
"bugs": {
"url": "https://github.com/lovasoa/highs-js/issues"
},
"homepage": "https://lovasoa.github.io/highs-js/",
"runkitExampleFilename": "example.js",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"typescript": "^4.8.4"
}
}