-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.07 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
{
"name": "javascript-lp-solver",
"description": "Easy to use, JSON oriented Linear Programming and Mixed Int. Programming Solver",
"version": "0.4.24",
"private": false,
"authors": [
"Justin W. Wolcott <[email protected]>"
],
"contributors": [
"Brice Chevalier <[email protected]>",
"Loïc Venerosy <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/JWally/jsLPSolver"
},
"main": "./src/main",
"browser": {
"./src/External/main.js": "./src/shims/External.js"
},
"types": "./types/main.d.ts",
"devDependencies": {
"benchmark": "*",
"grunt": "*",
"grunt-browserify": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "*",
"grunt-jsbeautifier": "*",
"grunt-mocha-test": "*",
"mocha": "*"
},
"keywords": [
"Linear",
"Programming",
"Integer",
"Programming",
"Solver",
"Linear Programming",
"Linear Optimization",
"Simplex",
"Mixed Integer Optimization",
"Mixed Integer Programming"
],
"license": "Unlicense"
}