-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "glpk.js",
"version": "4.0.2",
"description": "GLPK for node & browser",
"keywords": [
"LP",
"MILP",
"solver",
"linear programming",
"linear optimization"
],
"main": "dist/glpk.js",
"browser": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:em && npm run build:js",
"build:em": "make all",
"build:js": "rollup -c rollup.config.js --worker && node src/pack.js && rollup -c rollup.config.js",
"clean": "make clean",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jvail/glpk.js.git"
},
"author": "Jan Vaillant",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jvail/glpk.js/issues"
},
"homepage": "https://github.com/jvail/glpk.js#readme",
"dependencies": {
"pako": "^2.0.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"almost-equal": "^1.1.0",
"rollup": "^2.57.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"tape": "^5.3.1"
},
"types": "dist/glpk.d.ts"
}