Skip to content

Commit

Permalink
Add package json
Browse files Browse the repository at this point in the history
  • Loading branch information
lovasoa committed Mar 16, 2021
1 parent 9fbffda commit cd1e118
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
build/*
!build/build.sh
!build/*json
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "highs",
"version": "0.0.1",
"description": "This is a javascript linear programming library. It is built by compiling HiGHS to WebAssembly using emscripten.",
"main": "build/highs.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "node tests/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovasoa/highs-js.git"
},
"keywords": [
"linear",
"programming",
"maths",
"or",
"optimization"
],
"author": "Ophir LOJKINE",
"license": "MIT",
"bugs": {
"url": "https://github.com/lovasoa/highs-js/issues"
},
"homepage": "https://github.com/lovasoa/highs-js#readme"
}

0 comments on commit cd1e118

Please sign in to comment.